@extends('adminlayout.admin') @section('content')

{{$title}} Order List

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