@extends('back.layouts.main')
@section('title' , 'Driver status reasons')
@section('content')
# |
Reason |
Reason en |
Actions |
@if($data->isNotEmpty())
@foreach($data as $row)
{{$row->id}} |
{{$row->reason}} |
{{$row->reason_en}} |
|
@endforeach
@else
No Data Available |
@endif
@stop
@push('footer')
@endpush
@section('breadcrumbs')
Driver status reasons
@stop