@extends('admin.layout') @section('content')

Permissions Management

Manage system permissions and access controls

Add New Permission
@csrf
@foreach($permissions as $permission) @endforeach
Permission Actions
{{ $permission->name }} Created: {{ $permission->created_at->format('M d, Y') }}
@csrf @method('DELETE')
@if($permissions->isEmpty())
No Permissions Found

Get started by adding your first permission

@endif
@endsection