@extends('admin::layouts.master') @section('title', 'Manage Permissions') @section('content')

Permissions Management

Create New Permission
@if(session('success')) @endif @if(session('error')) @endif
All Permissions
@forelse($permissions ?? [] as $permission) @empty @endforelse
ID Name Guard Name Created At Actions
{{ $permission->id }} {{ $permission->name }} {{ $permission->guard_name ?? 'web' }} {{ $permission->created_at ? $permission->created_at->format('M d, Y') : 'N/A' }}
No permissions found

Get started by creating your first permission.

Create Permission
@if(isset($permissions) && method_exists($permissions, 'links'))
{{ $permissions->links() }}
@endif
@endsection @push('styles') @endpush @push('scripts') @endpush