My Requests
Here is your last Requests
@foreach ($on_request as $item)
@if ($item->status == 1)
@php
$text_color = 'not_accepted-color-btn';
$msg = __('Send');
@endphp
@elseif ($item->status == 2)
@php
$text_color = 'pend-color-btn';
$msg = __('In progress');
@endphp
@elseif ($item->status == 3)
@php
$text_color = 'done-color-btn';
$msg = __('Accept');
@endphp
@elseif ($item->status == 4)
@php
$text_color = 'cancel-color-btn';
$msg = __('Not accept');
@endphp
@elseif ($item->status == 5)
@php
$text_color = 'cancel-color-btn';
$msg = __('Canceled');
@endphp
@endif
Created
{{ $item->created_at }}
@if($item->discount)
{{ $item->discount }}
@endif
{{ $item->final_price }}
@endforeach