2017-06-23 09:55:45 +08:00
|
|
|
@extends('admin.app')
|
2017-11-23 01:52:02 +08:00
|
|
|
@section('title', 'Subfleets')
|
2018-01-08 05:09:22 +08:00
|
|
|
|
2017-11-23 01:52:02 +08:00
|
|
|
@section('actions')
|
|
|
|
<li>
|
|
|
|
<a href="{!! route('admin.subfleets.create') !!}">
|
|
|
|
<i class="ti-plus"></i>Add New</a>
|
|
|
|
</li>
|
|
|
|
@endsection
|
2018-01-08 05:09:22 +08:00
|
|
|
|
2017-11-23 01:52:02 +08:00
|
|
|
@section('content')
|
2018-01-01 10:59:26 +08:00
|
|
|
<div class="card border-blue-bottom">
|
|
|
|
<div class="content">
|
|
|
|
@include('admin.flash.message')
|
|
|
|
@include('admin.subfleets.table')
|
|
|
|
</div>
|
2017-06-10 11:19:17 +08:00
|
|
|
</div>
|
|
|
|
@endsection
|