phpvms/resources/views/layouts/default/pireps/index.blade.php
2018-04-08 20:51:27 -05:00

24 lines
608 B
PHP

@extends('app')
@section('title', 'pireps')
@section('content')
<div class="row">
<div class="col-md-12">
<div style="float:right;">
<a class="btn btn-info pull-right btn-lg"
style="margin-top: -10px;margin-bottom: 5px"
href="{{ route('frontend.pireps.create') }}">File New PIREP</a>
</div>
<h2>Pilot Reports</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