@extends('admin.layout.master') @section('title','CAKE ORDER LIST') @section('custom_style') @endsection @section ('content')

CAKE ORDER LIST

@csrf @php $p=1; @endphp @forelse ($orders as $i=>$item) @empty @endforelse
# ORDER NO Date Status Action
{{ ($p++) }} {{ $item->order_no }} {{ date('d-M-Y h:i A',strtotime($item->created_at)) }} {{ ($item->delivery_status==2?'DELIVERED':($item->delivery_status==0?'PENDING':'REJECTED')) }} @if ($item->delivery_status == 2) Bill @endif
@include('inventory.order.cake_detail_modal') @endsection @section('script') @stop