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

25 lines
555 B
PHP
Raw Normal View History

@extends('app')
2018-05-19 03:18:12 +08:00
@section('title', trans_choice('common.flight', 2))
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">
2018-05-19 03:18:12 +08:00
<h2>{{ $title ?? trans_choice('common.flight', 2) }}</h2>
@include('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('flights.nav')
@include('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('pagination.default') }}
</div>
</div>
2017-08-03 04:12:26 +08:00
@endsection
@include('flights.scripts')
2017-08-03 04:12:26 +08:00