@extends('pages.admin.layout') @section('content')

Drivers

Drivers
@if($drivers->count()) @foreach($drivers as $driver) @php $orderCount = App\Order::where("DriveryID", $driver->id)->count(); @endphp @endforeach
Driver ID Name Telephone Email Orders Assigned Actions
{{$driver->id}} {{$driver->name}} {{$driver->telephone}} {{$driver->email}} {{$orderCount}} @if($orderCount <= 0) Delete @endif
@else
You need to add a driver below to be able to use them for Deliveries
@endif
@endsection @section('scripts') @endsection