Bookings
@if(!$bookings->isEmpty())
| Client |
Labourer |
Job |
Start Date |
End Date |
Labourer Decision |
Rate / Hour |
Hours / Day |
Registered on |
Actions |
@foreach($bookings as $booking)
| {{ $booking->client_id }} |
{{ $booking->labourer_id }} |
{{ $booking->job_id }} |
{{ $booking->start_date }} |
{{ $booking->end_date }} |
{{ $booking->labourer_decision }} |
{{ $booking->rate_per_hour }} |
{{ $booking->hours_per_day }} |
{{ date('Y-m-d', strtotime($booking->created_at)) }} |
|
@endforeach
| Client |
Labourer |
Job |
Start Date |
End Date |
Labourer Decision |
Rate / Hour |
Hours / Day |
Registered on |
Actions |
@else
Create
@endif