@extends("_admin.adminapp")
@section('header')
@endsection
@section("content")
| {!! trans("admin.Tcon") !!} |
{!! trans("admin.User") !!} |
{!! trans("admin.Email") !!} |
{!! trans("admin.Status") !!} |
{!! trans("admin.JoinedAt") !!} |
{!! trans("admin.LastSeen") !!} |
{!! trans("admin.Actions") !!} |
@endsection
@section('footer')
@include('_admin._particles._datatable.footer_scripts', [
'data_url' => action("Admin\\UserController@getTableData", ['only' => $type]),
'order_count' => 4,
'columns' => [
[
'sType' =>'html',
'data' => 'icon',
'name' =>'icon',
'orderable' =>false,
'searchable' =>false,
"width" =>"2%"
],
[
'sType' =>'html',
'data' => 'username',
'name' =>'username',
'orderable' =>false,
'searchable' =>true,
"width" =>"38%"
],
[
'sType' =>'html',
'data' => 'email',
'name' =>'email',
'orderable' =>false,
'searchable' =>true,
"width" =>"20%"
],
[
'sType' =>'html',
'data' => 'status',
'name' =>'status',
'orderable' =>false,
'searchable' =>false,
"width" =>"10%"
],
[
'sType' =>'html',
'data' => 'created_at',
'name' =>'created_at',
'orderable' =>true,
'searchable' =>false,
"width" =>"10%"
],
[
'sType' =>'html',
'data' => 'updated_at',
'name' =>'updated_at',
'orderable' =>true,
'searchable' =>false,
"width" =>"10%"
],
[
'sType' =>'html',
'data' => 'action',
'name' =>'action',
'orderable' =>false,
'searchable' =>false,
"width" =>"10%"
],
],
]
);
@endsection