Added System, fixed something with Domain, added 403, start of some other items
This commit is contained in:
46
resources/views/auth/permissions.blade.php
Normal file
46
resources/views/auth/permissions.blade.php
Normal file
@@ -0,0 +1,46 @@
|
||||
@extends('layouts.app')
|
||||
@section('htmlheader_title')
|
||||
Permissions for {{ auth()->check() ? auth()->user()->name : 'Guest' }}
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<h2>{{ auth()->check() ? auth()->user()->name : 'Guest' }}</h2>
|
||||
|
||||
<table class="table monotable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Test</th>
|
||||
<th>Result</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>isAdmin</td>
|
||||
<td>@can('admin')YES @else NO @endcan</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Domains</td>
|
||||
<td>
|
||||
<table class="table table-sm">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Domain</th>
|
||||
<th>Result</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
@foreach (\App\Models\Domain::orderBy('name')->get() as $o)
|
||||
<tr>
|
||||
<td>{{ $o->name }}</td>
|
||||
<td>@can('admin',$o)YES @else NO @endcan</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
@endsection
|
Reference in New Issue
Block a user