@extends('layouts.admin') @section('buttons') @can('update', $config['model']) + Add Arrangement @endcan @can('delete', $config['model']) @endcan @endsection @section('content')
List {{ $config['page_name'] }}
@csrf {{-- --}} @foreach ($records as $key => $record) {{-- --}} @endforeach
Username Email Role2FA@sortable(['field' => 'created']) @sortable(['field' => 'updated']) @sortable(['field' => 'post_status', 'title' => 'status'])
user()->can('delete', $record) ? 'disabled' : '' }}> {{ $record->username }} {{ $record->email }} {{ $record->role->title ?? '' }}{{ $record->passwordSecurity && $record->passwordSecurity->google2fa_enable ? 'Enabled' : 'Disabled' }}@include('admin.base.created-at') @include('admin.base.updated-at') @include('admin.base.status-badge')
@include('admin.base.pagination')
@endsection