@extends('layouts.'.((Session::get('user')->CurrentRole === 'Firm Admin')?'admin':'filer').'-dashboard') @section('heading') My Filings @stop @section('content')
@if($category) @endif @if($caseType) @endif @if (!empty($caseDraft->docket_id)) @endif
Case Information
Location @if(isset($caseDraft->location_code)){{Locations::name($caseDraft->location_code)}}@endif
Envelope/Draft Number {{$caseDraft->case_no}}
Client Matter No. {{$client_matter_nro}}
Style/Case Name {{$caseDraft->title}}
Case Category {{$category->name}}
Case Type {{$caseType->name}}
Case No {{$caseDraft->docket_id}}
Review Comments {{$reviewComments}}
Submission Date {{$submission_date}}
Clerk Process Date {{$processed_date}}
@if($filing_accepted && !empty($fees)) @foreach($fees as $fee) @endforeach
Fees Information
{{$fee['description']}} ${{$fee['amount']}}
@endif @if($caseDraft->drafter)
Filer Information
Name Email Firm Name
{{$caseDraft->drafter->firstname.' '.$caseDraft->drafter->middlename.' '.$caseDraft->drafter->lastname}} {{$caseDraft->drafter->email}} {{Firm::name($caseDraft->drafter->firmid)}}
@endif @if(count($doclinks)>0)
@foreach($doclinks as $doc) @endforeach
Documents related to Filing
Doc Type File Name Type
{{$doc['isLead']}} {{$doc['name']}} {{$doc['type']}}
@endif @if(!is_null($party_list))
@foreach($party_list as $party) @endforeach
Party List
Name Party Type Address Attorney
@if($party->is_business==0){{$party->firstname .' '.$party->lastname}}@else {{$party->business_name}}@endif {{$party->name}} @if($party->streetAddress1){{$party->streetAddress1.','}}@endif @if($party->city){{$party->city.','}}@endif @if($party->statecode){{$party->statecode.','}}@endif @if($party->zipcode){{$party->zipcode}}@endif @if(isset($party->attorney_name)){{ $party->attorney_name }}@endif @if($party->additional_att > 0) +{{$party->additional_att}}@endif @if(!isset($party->attorney_name)){{'N/A'}}@endif
@endif @if(count($procremedy)>0)
Procedure Remedies

Warning: Undefined variable $procremedy in /home/dario/Servidor/CodingIt/MyFileRunner/App/app/views/case/detailByEnvelope.blade.php on line 148

Warning: foreach() argument must be of type array|object, null given in /home/dario/Servidor/CodingIt/MyFileRunner/App/app/views/case/detailByEnvelope.blade.php on line 148

Warning: Undefined variable $val in /home/dario/Servidor/CodingIt/MyFileRunner/App/app/views/case/detailByEnvelope.blade.php on line 156
@endif @if(isset($damageamount)&&$damageamount!=null)
Damages Sought
{{$damageamount}}
@endif @if(!is_null($caseServiceContacts) && $caseServiceContacts->count())
@foreach($caseServiceContacts as $serviceContact) @endforeach
Service Contacts
Name Firm Email
{{$serviceContact->first_name .' '.$serviceContact->last_name}} {{$serviceContact->firm_name}} {{$serviceContact->email}}
@endif @stop @section('scripts_bottom') @stop