@extends('layouts.admin.master') @section('title', 'Driver') @section('vendor-style') @endsection @section('vendor-script') @endsection @section('content')
@if(count($errors) > 0) @endif @if($message = Session::get('success')) @endif
@forelse ($drivers as $driver) @empty @endforelse
# Name Phone Action
{{$loop->iteration}} {{ $driver->name }} {{ $driver->mobile }}
@csrf @method('DELETE')
@endsection