18 lines
431 B
PHP
18 lines
431 B
PHP
@extends('admin.app')
|
|
|
|
@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 border-blue-bottom">
|
|
<div class="content">
|
|
@include('admin.flash.message')
|
|
@include('admin.subfleets.table')
|
|
</div>
|
|
</div>
|
|
@endsection
|