2018-03-12 07:00:42 +08:00
|
|
|
@extends('app')
|
2018-05-19 03:18:12 +08:00
|
|
|
@section('title', trans_choice('common.pirep', 2))
|
2018-02-04 08:18:09 +08:00
|
|
|
|
2017-08-09 09:34:36 +08:00
|
|
|
@section('content')
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<div style="float:right;">
|
2018-04-07 06:10:45 +08:00
|
|
|
<a class="btn btn-info pull-right btn-lg"
|
2017-08-09 09:34:36 +08:00
|
|
|
style="margin-top: -10px;margin-bottom: 5px"
|
2018-05-19 03:45:52 +08:00
|
|
|
href="{{ route('frontend.pireps.create') }}">@lang('pireps.filenewpirep')</a>
|
2017-08-09 09:34:36 +08:00
|
|
|
</div>
|
2018-05-19 03:59:34 +08:00
|
|
|
<h2>{{ trans_choice('pireps.pilotreport', 2) }}</h2>
|
2017-08-09 09:34:36 +08:00
|
|
|
@include('flash::message')
|
2018-04-04 08:21:42 +08:00
|
|
|
@include('pireps.table')
|
2017-08-09 09:34:36 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-12-05 00:34:01 +08:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 text-center">
|
2018-04-04 08:21:42 +08:00
|
|
|
{{ $pireps->links('pagination.default') }}
|
2017-12-05 00:34:01 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-08-09 09:34:36 +08:00
|
|
|
@endsection
|
|
|
|
|