@extends('adminlayout.admin')
@section('content')
| S.no |
User Name |
User Id |
Total Qty |
Grand Total |
Payment Type |
Date |
Status |
Action |
@php
$i=1;
@endphp
@foreach($orders as $data)
| {{$i++}} |
|
|
|
₹ |
|
|
{{$data->status == 1 ? 'Active' : 'Inactive'}} |
@if($data->status == 1 || $data->status == 0)
@endif
|
@endforeach
@endsection