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

17 lines
412 B
PHP
Raw Normal View History

@extends('app')
2018-05-18 06:03:30 +08:00
@section('title', trans_choice('frontend.global.pilot', 2))
@section('content')
<div class="row">
<div class="col-md-12">
2018-05-18 06:03:30 +08:00
<h2>{{ trans_choice('frontend.global.pilot', 2) }}</h2>
@include('users.table')
</div>
</div>
<div class="row">
<div class="col-12 text-center">
{{ $users->links('pagination.default') }}
</div>
</div>
@endsection