@extends('layouts.main') @section('breadcrumb')

On-Demand Reports

@endsection @section('content')
@include('flash::message')
{{ csrf_field() }}
{{-- bas-filter ajax load --}}
@if ($reports->count() > 0)
@foreach($reports as $report) @php if(isset($reportPrintNames[$report->name])){ $fileName=\App\Models\ReportOndemand::$reportPrintNames[$report->name]['full'].' '. $accountName.' ' . date('m-d-Y', strtotime($report->created_at)) . '.pdf'; }else{ $fileName=$report->name; } @endphp @endforeach
Title Generated by Action
{{ $fileName }} {{ $report->contact_name }} {!! Form::open(['url' => ["/reports/on-demand/delete/$report->id"], 'method' => 'delete']) !!} {!! Form::close() !!}
@endif @endsection @section('scripts') @include('reports.on-demand.js_render') @endsection