@extends('layouts.master-res')
@section('Title')
Dashboard |Restaurant-Owner
@endsection
@section('content')
| Order ID |
Requested By |
Wepppis |
Purpose Of Invitation |
Date |
Time |
Amount |
Status |
Action |
@foreach($follow_ups as $live_req)
| #{{$live_req->order_id }} |
{{$live_req->name}} |
{{$live_req->wepppies}} |
{{$live_req->purpose}} |
{{$live_req->date}} |
{{$live_req->time}} |
@if($live_req->amount == "")
- |
@else
KD {{$live_req->amount}} |
@endif
@if($live_req->status == 1)
Accepted
@else
Declined
@endif
|
|
@endforeach
| Order ID |
Requested By |
Wepppis |
Purpose Of Invitation |
Date |
Time |
Amount |
Status |
Action |
@endsection
@section('scripts')
@endsection