@extends('panel.layouts.app') @push("head") @endpush @section('title','Dashboard') @section('body')
@can('customers-widget')

Customers

{{$widget['customers']}}
@endcan @can('cars-widget')

Cars

{{$widget['cars']}}
@endcan @can('inspection-widget')

Inspection

{{$widget['inspections']}}
@endcan @can('inspection-in-process-widget')

Inspection In Process

{{$widget['pending_inspections']}}
@endcan @can('users-widget')

User

{{$widget['users']}}
@endcan @can('heads-widget')

Heads

{{$widget['heads']}}
@endcan @can('checks-widget')

Checks

{{$widget['checks']}}
@endcan @can('packages-widget')

Packages

{{$widget['packages']}}
@endcan @can('sms-sent-widget')

SMS Sent

{{$widget['sms_sent']}}
@endcan
@can('inspection-in-process-dashboard')

Inspections In Process

@foreach($quick_checks as $list) @endforeach
Package Customer Car Start at Action
{{$list->package_name}} {{$list->customer_name}} {{-- {{$list->car_name}}--}} {{$list->car_make}} {{$list->car_plate_number}} {{$list->start_at}}
{{ \Carbon\Carbon::parse($list->start_at)->diffForhumans() }}
@can('inspection-continue') @endcan
@endcan @endsection @push('scripts') @endpush