@section('content')
{{$envelope_arr = array()}} @foreach ($final_result as $row) @if (in_array($row->envelope_id, $envelope_arr)) {{ $row->total_fees = '-' }} {{ $row->provider_tax_fees = '-' }} {{ $row->provider_service_fees = '-' }} {{ $row->court_service_fees = '-' }} {{ $row->service_tax_fees = '-' }} {{ $row->filing_service_fees = '-' }} {{ $row->court_filing_fees = '-' }} {{ $row->court_case_fees = '-' }} {{ $row->convenience_fees = '-' }} @else {{ $envelope_arr[] = $row->envelope_id }} @endif @if ($row->filing_status_code == '') @switch ($row->filing_status) @case(0) {{ $row->filing_status = 'Successful'}} @break @case(1) {{ $row->filing_status = 'Draft' }} @break @case (2) {{ $row->filing_status = 'Submission In Progress' }} @break @case (3) {{ $row->filing_status = 'Submission Failed' }} @break @endswitch @else {{ $row->filing_status = ucfirst($row->filing_status_code) }} @endif {{ $row->submission_date = ($row->submission_date == '0000-00-00 00:00:00') ? date('D M d Y h:i:s A', (strtotime($row->filing_date) - ($params['tmz'] * 60))) : date('D M d Y h:i:s A', (strtotime($row->submission_date) - ($params['tmz'] * 60))) }} {{ $row->clerk_process_date = ($row->clerk_process_date == '0000-00-00 00:00:00') ? 'N/A' : date('D M d Y h:i:s A', (strtotime($row->clerk_process_date) - ($params['tmz'] * 60))) }} {{ $row->payment_type = (!is_null($row->payment_type) && $row->payment_type == '') ? 'Waiver' : $row->payment_type }} @if (strtolower($row->filing_status) == 'accepted') // } }
Envelope Number Firm Name Jurisdiction Client Reference Number Case Name Case Number Submission Date Filing Attorney Filer Filer Email Filing Type Filing Status Lead Document Bar Number Clerk Process Date Payment Type Payment Account Name Last 4 Digits Total Fees Provider Tax Fees Provider Service Fees Court Service Fees Service Tax Fees Filing Service Fees Court Filing Fees Court Case Fees Convenience Fees
{{ $row->id }} {{ $row->envelope_id }} {{ $row->firm_name }} {{ $row->jurisdiction }} {{ $row->client_ref_no }} {{ $row->case_name }} {{ $row->case_no }} {{ $row->submission_date }} {{ $row->filing_attorney }} {{ $row->filer }} {{ $row->filer_email }} {{ $row->filing_type }} {{ $row->filing_status }} {{ $row->lead_document }} {{ $row->bar_number }} {{ $row->clerk_process_date }} {{ $row->payment_type }} {{ $row->payment_acc_name }} {{ $row->last_4_digits }} {{ $row->total_fees }} {{ $row->provider_tax_fees }} {{ $row->provider_service_fees }} {{ $row->court_service_fees }} {{ $row->service_tax_fees }} {{ $row->filing_service_fees }} {{ $row->court_filing_fees }} {{ $row->court_case_fees }} {{ $row->convenience_fees }}
{{die}} @stop