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

24 lines
667 B
PHP
Raw Normal View History

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