@extends('layouts.admin_master') @section('content')
Pending Orders List
@foreach($orders as $row) @endforeach
Order Id Product Code Product Name Customer Email Quantity Status Action
{{ $row->id }} {{ $row->product_code }} {{ $row->product_name }} {{ $row->email }} {{ $row->quantity }} @if($row->order_status=='0') Pending @else Delivered @endif createInvoice
@endsection @section('script') @endsection