2017-06-23 09:55:45 +08:00
|
|
|
@extends('admin.app')
|
2017-06-10 11:19:17 +08:00
|
|
|
|
2018-02-23 04:21:00 +08:00
|
|
|
@section('title', "$subfleet->name")
|
2017-06-10 11:19:17 +08:00
|
|
|
@section('content')
|
2018-02-23 04:21:00 +08:00
|
|
|
<div class="card border-blue-bottom">
|
|
|
|
<div class="content">
|
|
|
|
@include('admin.subfleets.show_fields')
|
2017-06-25 00:09:27 +08:00
|
|
|
</div>
|
2018-02-23 04:21:00 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card border-blue-bottom">
|
|
|
|
<div class="content">
|
|
|
|
<h3>fares</h3>
|
|
|
|
@component('admin.components.info')
|
|
|
|
Fares assigned to the current subfleet. These can be overridden,
|
|
|
|
otherwise, the value used is the default, which comes from the fare.
|
|
|
|
@endcomponent
|
|
|
|
|
|
|
|
@include('admin.subfleets.fares')
|
2017-06-10 11:19:17 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
2017-07-03 04:11:27 +08:00
|
|
|
@include('admin.subfleets.script')
|