phpvms/resources/views/layouts/default/pireps/index.blade.php

18 lines
513 B
PHP
Raw Normal View History

2017-08-09 09:34:36 +08:00
@extends('layouts.default.app')
@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')
@include('layouts.default.pireps.table')
</div>
</div>
@endsection