@extends('admin.template.layout')
@section('header')
@stop
@section('content')
Total Customers
{{$customerData}}
Total Companies
{{$driverData}}
Total Requests
{{$bookingData}}
Pending Requests
{{$roles}}
Name |
Created Date |
Status |
@foreach($customerss as $cus)
{{$cus->name}} |
{{$cus->created_at}} |
{{$cus->status}} |
@endforeach
@stop
@section('footer')
@stop
@section('script')
@stop