@foreach (['danger', 'warning', 'success', 'info'] as $msg)
@if(Session::has('alert-' . $msg))
{{ Session::get('alert-' . $msg) }}
@endif
@endforeach
{{--
{{$agent->name}} Agent
--}}
Agent Delivery Charges
@if(count($agent_delivery_charge)>0)
| Standard Delivery Charge |
Midnight Delivery Charge |
Express Delivery Charge |
Action |
@foreach($agent_delivery_charge as $index => $data)
| Rs. {{ $data->s_delivery }} |
Rs. {{ $data->m_delivery }} |
Rs. {{ $data->e_delivery }} |
|
@endforeach
@else
No Agent's Delivery Charges Found...
@endif
Agent Product List
Add Product
@if(count($result) > 0)
| No. |
fnid |
item |
Price |
Personalized |
Created Date |
Action |
@foreach($result as $index => $data)
| {{ $index + 1 }} |
{{ $data->fnid }} |
{{ $data->item }} |
{{ $data->price }} |
{{ $data->is_personalized }} |
{{ date('d-m-Y', strtotime($data->created_at)) }} |
|
@endforeach
@else
No Data Found...
@endif