@extends('layouts.contentLayoutMaster')
@php
$breadcrumbs = [[['link' => route('transportations.index'), 'name' => "خطط النقل"], ['link' => route('transportations.show',$transportation), 'name' => "مشاهدة خطة النقل"]],['title'=> 'مشاهدة']];
@endphp
@section('title', 'ادارة خطط النقل')
@section('content')
@component('components.forms.formCard',['title' => sprintf('مشاهدة معلومات خطة النفل : #%s - %s', $transportation->id ,$transportation->transportation_type)])
{!! Form::model($transportation, ['method' => 'PUT', 'onsubmit' => 'showLoader()','route' => ['transportations.update', $transportation->id]]) !!}