@extends('layouts.master') @section('page_title', 'Pending Orders') @section('title', 'Pending Orders') @section('main_item', 'Sale') @section('sub_item', 'Pending Orders') @section('content')

Pending Order Details

@csrf @foreach ($sales as $sale) @endforeach
Invoice No Waybill No Customer Name Address Delivery City Action
{{ $sale->invoice_no }} @if (!empty($sale->waybill_no)) {{ $sale->waybill_no }} @else N/A @endif {{ $sale->customer->name }} {{ $sale->customer->landmark }} {{ $sale->customer->city }}
@endsection @section('scripts') @endsection