@extends('admin.layouts.master') @section('title') @endsection @section('css') @include('admin.layouts.css') @endsection @section('body')
@if ($errors->any())
@endif

@foreach($orders as $order) @endforeach
# اسم العميل اسم المستلم طريقة الدفع المبلغ الإجمالي الحالة العمليــــات
{{$i}} {{ $order->user->name ?? 'N/A' }} {{ $order->name ?? 'N/A' }} {{$order->payment_method}} {{$order->items->count();}} {{$order->status}}
@endsection @section('js') @include('admin.layouts.js') @endsection