@extends('layouts.'.((Session::get('user')->CurrentRole === 'Firm Admin')?'admin':'filer').'-dashboard') @section('heading') Pending Invoices @stop @section('content')
@if(!is_null($data) && count($data)>0) @endif

@if($errors->has('case_no'))

{{ $errors->first('case_no') }}

@endif

@if($errors->has('firm_name'))

{{ $errors->first('firm_name') }}

@endif

calendar

@if($errors->has('start_date'))

{{ $errors->first('start_date') }}

@endif

calendar

@if($errors->has('end_date'))

{{ $errors->first('end_date') }}

@endif Reset To Default
@if(!is_null($data) && count($data)>0) @foreach($data as $key)
Warning: Undefined variable $key in /home/dario/Servidor/CodingIt/MyFileRunner/App/app/views/superAdmin/pendinginvoices.blade.php on line 83

Warning: Attempt to read property "total_fees" on null in /home/dario/Servidor/CodingIt/MyFileRunner/App/app/views/superAdmin/pendinginvoices.blade.php on line 83
@endforeach @else @endif
Details ENVELOPE ID STATUS CASE NO SUBMITTED DATE CLERK PROCCESS DATE CASE TITLE FIRM NAME FILER NAME COURT FILING TYPE TOTAL FEES 4 DIGITS / CARD NAME
{{$key->envelope_id}} {{ucfirst($key->filing_status_code)}} {{$key->case_no}} @if(!empty($key->submission_date) && $key->submission_date != '0000-00-00 00:00:00') {{ date('m/d/Y', strtotime($key->submission_date)) }} @endif @if(!empty($key->clerk_process_date) && $key->clerk_process_date != '0000-00-00 00:00:00') {{ date('m/d/Y', strtotime($key->clerk_process_date)) }} @endif {{$key->title}} {{$key->firm_name}} {{$key->filer_name}} {{$key->jurisdiction}} {{$key->filing_type}} $ {{ number_format($key->total_fees, 2, ',', '.') }} {{$key->primary_acc_no}}
{{$key->card_type}}
No results to display
Total: ({{count($data)}} records) $ {{number_format($total_fees, 2, ',', '.');}}
@stop @section('scripts_bottom') @stop