@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('students.contracts.index',$student), 'name' => "الطالب : $student->student_name"], ['link' => route('students.contracts.transactions.index' ,[$student->id, $contract]), 'name' => "تعاقد #". $contract->year_name], ['link' => route('students.contracts.transportations.index' ,[$student->id, $contract]), 'name' => "ادارة خدمة النقل"]],['title' => 'تعديل خدمة النقل ']]; @endphp @section('title', sprintf('ادارة خدمة النقل الطالب : %s', $student->student_name)) @section('content') {!! sprintf('ادارة خدمة النقل الطالب : %s - تعاقد رقم %s - للعام الدراسي %s ', $student->student_name ,$contract->id,$contract->year_name) !!} يمكنك من خلال هذة الصفحة ادارة خدمة النقل للطلاب خلال العام الدراسي @can('transportations-create') اضافة حدمة نقل @endcan كود الخطة الرسوم الضرائب الأجمالي طريقة الدفع تاريخ الانتهاء بواسطة اخر تحديث الاجراءات المتاحة @foreach ($transportations as $transportation) {{ $transportation->id }} {{ $transportation->transportation_type }} {{ $transportation->base_fees }} {{ $transportation->vat_amount }} {{ $transportation->total_fees }} {{ App\Models\Transportation::payment_plans($transportation->payment_type) }} {{ ! is_null($transportation->expire_at) ? $transportation->expire_at->format('Y-n-d') : 'غير محدد' }} {{ $transportation->admin_name }} {{ $transportation->updated_at->diffforhumans() }} @can('transportations-list') @endcan @can('transportations-edit') @endcan @can('transportations-delete') @endcan @endforeach @endsection