@extends('layouts.master') @section('title', 'Premium Gift Requests') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.sidebar') @include('layouts.header-sub')
@yield('title')
History
สรุปคำขอเบิกของที่ระลึก

{{-- --}}
@if ($items->isEmpty())
No premium requests

There are no pending requests at the moment.

@else @foreach ($items as $i => $item) @endforeach
No. Product Name Qty Order Code Customer Name Request Date Status Actions
{{ $i + 1 }}
{{ $item->product_name }}
{{ $item->quantity }} {{ $item->order_code }} {{ $item->order_customer_name }} {{ $item->order_request_date ? \Carbon\Carbon::parse($item->order_request_date)->format('d M Y') : '-' }} @if ($item->item_status == 'pending') Pending @elseif ($item->item_status == 'approved') Approved @elseif ($item->item_status == 'rejected') Rejected @else - @endif @if ($item->item_status == 'pending')
@csrf
@csrf
@else - @endif
@endif
@include('layouts.footer') @endsection