@extends('layouts.business.master') @section('css') @endsection @section('content')
Dashboard

{{ \App\Lorry::where('owner_id', \App\BusinessOwner::where('user_id', Auth::user()->id)->first()->id)->count() }}

Lorries

{{ \App\Driver::where('owner_id', \App\BusinessOwner::where('user_id', Auth::user()->id)->first()->id)->count() }}

Drivers

{{ count($orders) }}

Orders

{{ \App\Order::where('owner_id', \App\BusinessOwner::where('user_id', Auth::user()->id)->first()->id)->count() }}

My Orders

{{ \App\Trip::whereIn('driver_id', \App\Driver::where('owner_id', \App\BusinessOwner::where('user_id', Auth::user()->id)->first()->id)->pluck('id'))->count() }}

Running Trips
@endsection @section('scripts') @endsection