@extends('dashboard.layouts.master') @section('css') @endsection @section('breadcrumb')

{{ trans('labels.book_orders') }}

@endsection @section('content')
@if ($orders->count() > 0) export excel @foreach ($orderBooks as $key => $orderBook) @endforeach
اسم الكتاب عدد الاوردرات المطلوب
{{$orderBook['title']}} {{$orderBook['orders']}} {{$orderBook['qty']}}
@foreach ($orders as $key => $order) @endforeach
{!!$orders->withQueryString()->links('pagination::bootstrap-4')!!}
# التاريخ {{ trans('labels.name') }} العدد المبلغ الشحن {{ trans('labels.total_amount') }} {{ trans('labels.status') }} Actions
{{ $order->id }} {{ $order->created_at }} {{ $order->name ?? null }}
{{ $order->phone }}
{{ $order->details->sum('qty') }} {{ $order->amount }} {{ $order->shipping_fees }} ({{$order->gov}}) {{ $order->total_amount }} {!! $order->status() !!} @can('book-orders-change-status') {!! $order->statusAction() !!} @endcan
@else
لا يوجد شحنات
@endif
@endsection @section('script') {{-- --}} @endsection