phpvms/resources/views/layouts/default/flights/index.blade.php

24 lines
584 B
PHP
Raw Normal View History

@extends("layouts.${SKIN_NAME}.app")
@section('title', 'flights')
2017-08-03 04:12:26 +08:00
@section('content')
<div class="row">
@include('flash::message')
2017-12-05 04:21:46 +08:00
<div class="col-md-9">
2017-08-03 04:12:26 +08:00
<h2 class="description">flights</h2>
@include("layouts.${SKIN_NAME}.flights.table")
2017-08-03 04:12:26 +08:00
</div>
2017-12-05 04:21:46 +08:00
<div class="col-md-3">
@include("layouts.${SKIN_NAME}.flights.search")
2017-08-03 04:29:04 +08:00
</div>
2017-08-03 04:12:26 +08:00
</div>
<div class="row">
<div class="col-12 text-center">
{{ $flights->links("layouts.${SKIN_NAME}.pagination.default") }}
</div>
</div>
2017-08-03 04:12:26 +08:00
@endsection
@include("layouts.${SKIN_NAME}.flights.scripts")
2017-08-03 04:12:26 +08:00