@extends('layouts.restaurant') @php $currencySymbol = App\Models\AppSetting::getValue('currency_symbol', '?'); $itemImageUrl = function ($image) { if (is_array($image)) { $image = collect($image)->filter()->first(); } if (!$image) { return null; } return str_starts_with((string) $image, 'http://') || str_starts_with((string) $image, 'https://') ? $image : \Illuminate\Support\Facades\Storage::disk('public')->url($image); }; @endphp @php $canManageOrders = auth()->user()->hasRestaurantPermission('manage_orders') || auth()->user()->hasRestaurantPermission('update_order_status'); @endphp @section('title', 'Orders Management') @section('styles') @endsection @section('content')
Manage and track all your store orders
When customers place orders, they will appear here