phpvms/resources/views/admin/subfleets/show.blade.php

24 lines
690 B
PHP
Raw Normal View History

@extends('admin.app')
2018-02-23 04:21:00 +08:00
@section('title', "$subfleet->name")
@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')
</div>
</div>
@endsection
@include('admin.subfleets.script')