@extends('layouts.layout-horizontal') @section('title', 'Purchase Orders') @section('css') @include('partials._index-table-styles') @endsection @section('content')
| PO No | Total Items | Status | Actions |
|---|---|---|---|
|
{{ $dateLabel }} ({{ $dateOrders->count() }})
|
|||
| {{ $po->po_no }} | {{ $po->items_count }} | @if($status == 'draft') Draft @elseif($status == 'generated') Generated @elseif($status == 'closed') Closed @else {{ ucfirst($status) }} @endif | |
| @include('partials._empty-state', [ 'icon' => 'ph-clipboard-text', 'title' => 'No purchase orders yet', 'subtitle' => 'Create your first purchase order.', 'action' => route('purchase-orders.create'), 'actionLabel' => 'Create PO', ]) | |||