@extends('layouts.app') @section('title', ' - Add Parking') @section('content')
{{ __('application.report.details_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
@if ($errors->has('car_no')) {{ $errors->first('car_no') }} @endif
@if ($errors->has('driver_name')) {{ $errors->first('driver_name') }} @endif
@if ($errors->has('driver_mobile')) {{ $errors->first('driver_mobile') }} @endif
{{ __('application.report.clear') }}
@if (count($request))
{{ __('application.report.report_view') }}
@foreach ($request as $key => $value) @endforeach
@include('content.reports.pdf_details_report')
@endif
@endsection @push('scripts') @endpush