phpvms/resources/views/layouts/default/flights/index.blade.php
Nabeel S 4a3ec38919
Option for SB only on bids; add the new file type #642 (#643)
Option for SB only on bids; add the new file type #642
2020-03-27 11:49:19 -04:00

25 lines
543 B
PHP

@extends('app')
@section('title', trans_choice('common.flight', 2))
@section('content')
<div class="row">
@include('flash::message')
<div class="col-md-9">
<h2>{{ trans_choice('common.flight', 2) }}</h2>
@include('flights.table')
</div>
<div class="col-md-3">
@include('flights.nav')
@include('flights.search')
</div>
</div>
<div class="row">
<div class="col-12 text-center">
{{ $flights->links('pagination.default') }}
</div>
</div>
@endsection
@include('flights.scripts')