17 lines
423 B
PHP
17 lines
423 B
PHP
@extends("layouts.${SKIN_NAME}.app")
|
|
@section('title', 'Pilots')
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h2 class="description">pilots</h2>
|
|
@include("layouts.${SKIN_NAME}.users.table")
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-12 text-center">
|
|
{{ $users->links("layouts.${SKIN_NAME}.pagination.default") }}
|
|
</div>
|
|
</div>
|
|
@endsection
|