9e5386264f
* SimBrief integration #405 * Add briefing as API response; add acars_xml field #405
24 lines
667 B
PHP
24 lines
667 B
PHP
@extends('app')
|
|
@section('title', trans_choice('common.pirep', 2))
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div style="float:right;">
|
|
<a class="btn btn-outline-info pull-right btn-lg"
|
|
style="margin-top: -10px;margin-bottom: 5px"
|
|
href="{{ route('frontend.pireps.create') }}">@lang('pireps.filenewpirep')</a>
|
|
</div>
|
|
<h2>{{ trans_choice('pireps.pilotreport', 2) }}</h2>
|
|
@include('flash::message')
|
|
@include('pireps.table')
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12 text-center">
|
|
{{ $pireps->links('pagination.default') }}
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|