@include('tenant_layouts.header')
| Updated date | Property | From | To | Subject | Matter | Status | Date Opened | Date Closed | Priority |
|---|---|---|---|---|---|---|---|---|---|
| {{$list->updated_at}} | @if(count($tenants) > 0) @foreach($tenants as $tenant) @if($tenant->user_id == $list->sender_id) {{$tenant->property_name}} @endif @if($tenant->user_id == $list->receiver_id) {{$tenant->property_name}} @endif @endforeach @endif | @if(Auth::user()->id == $list->sender_id) {{Auth::user()->first_name.' '.Auth::user()->last_name}} @else @if(count($users) > 0) @foreach($users as $user) @if($user->id == $list->sender_id) {{$user->first_name.' '.$user->last_name}} @endif @endforeach @endif @endif | @if(Auth::user()->id == $list->receiver_id) {{Auth::user()->first_name.' '.Auth::user()->last_name}} @else @if(count($users) > 0) @foreach($users as $user) @if($user->id == $list->receiver_id) {{$user->first_name.' '.$user->last_name}} @endif @endforeach @endif @endif | {{ $list->subject}} | {{$list->matter}} | {{$list->status}} | {{date("m/d/Y", strtotime($list->date))}} | @if($list->close_date) {{date("m/d/Y", strtotime($list->close_date))}} @endif | {{$list->priority}} |