@extends('../layout/' . $layout) @section('subhead') Report Request History @endsection @section('subcontent') @php $currency = DB::table('systemflag') ->where('name', 'Currency') ->select('value') ->first(); @endphp

Report Request History

@if ($totalRecords > 0) PDF CSV @endif
@csrf
@if (!$searchString) @else @endif
@if ($totalRecords > 0)
@php $no = 0; @endphp @foreach ($reportRequest as $req) @endforeach
# USER ASTROLOGER REPORT TYPE REPORT DATE REPORT CHARGE ACTIONS
{{ ($page - 1) * 15 + ++$no }} {{ $req->userName }} - {{ $req->userContactNo }} {{ $req->astrologerName }} - {{ $req->astrologerContactNo }} {{ $req->title }} {{ date('d-m-Y', strtotime($req->created_at)) ? date('d-m-Y ', strtotime($req->created_at)) : '--' }} {{ $currency->value }} {{ $req->reportRate }}
@if ($req->reportFile) DownloadFile @endif
Showing {{ $start }} to {{ $end }} of {{ $totalRecords }} entries
@else
noData

No Data Available

@endif @endsection @section('script') @endsection