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