@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('students.contracts.index',$student), 'name' => "الطالب : $student->student_name"], ['link' => route('students.contracts.transportations.index' ,[$student->id, $contract]), 'name' => "مشاهدة خدمة النقل"]],['title' => 'مشاهدة خدمة النقل ']]; @endphp @section('title', sprintf('مشاهدة حدمة النقل للطالب %s - العقد رقم #%s', $student->student_name, $contract)) @section('vendor-style') @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content') @component('components.forms.formCard',['title' => sprintf('مشاهدة حدمة النقل للطالب %s - العقد رقم #%s', $student->student_name, $contract)]) {!! Form::model($transportation, ['method' => 'PUT', 'onsubmit' => 'showLoader()','route' => ['students.contracts.transportations.update', [$student->id,$contract,$transportation->id]]]) !!} معلومات الطالب
عودة
{!! Form::close() !!} @endcomponent @endsection @section('vendor-script') @endsection @section('page-script') @endsection