@extends('admin.layouts.app') @section('panel')
@forelse($manualOrders as $order) @empty @endforelse
@lang('id') @lang('order_id') @lang('costumer_id') @lang('send_to_user_role_id') @lang('notification_type') @lang('order_price') @lang('final_price') @lang('status') @lang('created_at') @lang('Action')
{{__($order->id)}} {{__($order->order_id)}} {{ optional($order->customer)->username ?? __('N/A') }} {{ optional($order->role)->name ?? $order->send_to_user_role_id }} {{__($order->notification_type)}} {{__($order->order_price)}} {{__($order->final_price)}} {{__($status[$order->status] ?? 'Unknown')}} {{ showDateTime($order->created_at)}} Requests
{{__($emptyMessage) }}
@if ($manualOrders->hasPages()) @endif
@endsection