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

24 lines
631 B
PHP
Raw Normal View History

@extends('app')
@section('title', 'pireps')
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>
2017-08-09 09:34:36 +08:00
</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-04-04 08:21:42 +08:00
@include('pireps.table')
2017-08-09 09:34:36 +08:00
</div>
</div>
<div class="row">
<div class="col-12 text-center">
2018-04-04 08:21:42 +08:00
{{ $pireps->links('pagination.default') }}
</div>
</div>
2017-08-09 09:34:36 +08:00
@endsection