{!! Theme::section('theme/user.purchase.menu',['page'=>'ridebooking']) !!}
@if(count($myRides)>0)
| Community Name |
Slot |
Location |
SIM |
Amount |
@if($myRides)
@foreach($myRides as $rec)
|
@if($rec->community)
@endif
|
@if($rec->timeslot){{$rec->timeslot->times}} {{$rec->timeslot->name}}@endif |
@if($rec->location){{$rec->location->location}}@endif |
@if($rec->sim){{$rec->sim->sim}}@endif |
${{number_format($rec->amount, 2, '.', '')}} |
@endforeach
@else
|
@endif
{!! $myRides->appends(request()->except('page'))->render() !!}
@else
No ride bookings found.
@endif