@extends('website.layouts.master', ['no_transparent_header' => false]) @section('css') @endsection @section('content')
@include('website.layouts.includes.leftside_profile', ['type' => "requests"])

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
{{ $item->code }} {{-- Singapore, officially the --}}
Status

{{ $msg }}

Created

{{ $item->created_at }}

@if($item->discount)

{{ $item->discount }}

@endif

{{ $item->final_price }}

@endforeach
@endsection @section('js') @endsection