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