@extends('layouts.app') @section('title', ' - Add Parking') @section('content')
{{ __('application.report.parking_summary_report') }}
@csrf
@if ($errors->has('from_date')) {{ $errors->first('from_date') }} @endif
@if ($errors->has('to_date')) {{ $errors->first('to_date') }} @endif
@if ($errors->has('place_id')) {{ $errors->first('place_id') }} @endif
@if ($errors->has('floor_id')) {{ $errors->first('floor_id') }} @endif
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
{{ __('application.report.clear') }}
@if (count($request))
{{ __('application.report.report_view') }}
@foreach ($request as $key => $value) @endforeach
@include('content.reports.pdf_summary_report')
@endif
@endsection @push('scripts') @endpush