2018-02-04 08:18:09 +08:00
|
|
|
@extends("layouts.${SKIN_NAME}.app")
|
2017-12-20 10:19:36 +08:00
|
|
|
@section('title', 'pireps')
|
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;">
|
2017-08-10 13:08:38 +08:00
|
|
|
<a class="btn btn-primary pull-right btn-lg"
|
2017-08-09 09:34:36 +08:00
|
|
|
style="margin-top: -10px;margin-bottom: 5px"
|
|
|
|
href="{!! route('frontend.pireps.create') !!}">File New PIREP</a>
|
|
|
|
</div>
|
2017-08-09 09:37:00 +08:00
|
|
|
<h2 class="description">pilot reports</h2>
|
2017-08-09 09:34:36 +08:00
|
|
|
@include('flash::message')
|
2018-02-04 08:18:09 +08:00
|
|
|
@include("layouts.${SKIN_NAME}.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-02-04 08:18:09 +08:00
|
|
|
{{ $pireps->links("layouts.${SKIN_NAME}.pagination.default") }}
|
2017-12-05 00:34:01 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-08-09 09:34:36 +08:00
|
|
|
@endsection
|
|
|
|
|