@extends('layouts.adminmaster') @section('styles') @endsection @php $sitesetting = App\Models\sitesetting::first(); use App\Models\vehiclereports; $vehicleReports = new VehicleReports(); @endphp @section('admincontent')
@if ($message = Session::get('success'))| S no. | Vehicle Type | Vehicle No | Prali Name | Total Tickets | Today | This Month | This Year | Action |
|---|---|---|---|---|---|---|---|---|
| {{ ++$key }} | {{ $per->vehicleno}} | @php $tickets = $vehicleReports->vehiclereportsdaily($per->id); $ticketmonthly = $vehicleReports->vehiclereportsmonthly($per->id); $vehiclereportsyearly = $vehicleReports->vehiclereportsyearly($per->id); @endphp | {{$tickets['tickettoday']}} | Rs. {{$tickets['totalcollection']}} | Rs. {{$ticketmonthly['totalcollection']}} | Rs. {{$vehiclereportsyearly['totalcollection']}} | View Details |