@extends('back.layouts.main')
@section('title' , 'Driver tips')
@section('content')
# |
Name |
Image |
Amount |
Actions |
@if($data->isNotEmpty())
@foreach($data as $row)
{{$row->id}} |
{{$row->name}} |
@if($row->image!='')
image)}} style='width:100px' >
@endif
| {{$row->amount}} |
|
@endforeach
@else
No Data Available |
@endif
@stop
@push('footer')
@endpush
@section('breadcrumbs')
Driver tips
@stop