@extends('admin.layout.master') @section('title','CAKE ORDER LIST') @section('custom_style') @endsection @section ('content')
| # | 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 |