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

{{$package->title}}

@endsection @section('content')

رقم الهاتف

@foreach ($orders as $order) @endforeach
# تاريخ الشراء النوع رقم الطالب اسم الطالب العرض بواسطة {{ trans('labels.action') }}
{{ $order->id }} {{ $order->created_at }} {{ $order->type }} {{ $order->student->phone }} {{ $order->student->name }} {{ $order->package->title ?? "" }} {{ $order->actionBy->name }} @can('admins-edit') @if($order->type != 'return') @if(!$order->is_returned) @else @endif @endif @endcan @can('admins-delete') @endcan
{!!$orders->withQueryString()->links('pagination::bootstrap-4')!!}
@endsection @section('script') @endsection