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