2018-03-12 07:00:42 +08:00
|
|
|
@extends('app')
|
2018-05-18 06:03:30 +08:00
|
|
|
@section('title', trans_choice('frontend.global.pilot', 2))
|
2018-01-20 06:07:31 +08:00
|
|
|
|
|
|
|
@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>
|
2018-04-09 09:51:27 +08:00
|
|
|
@include('users.table')
|
2018-01-20 06:07:31 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 text-center">
|
2018-04-09 09:51:27 +08:00
|
|
|
{{ $users->links('pagination.default') }}
|
2018-01-20 06:07:31 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|