@extends('layouts.master') @section('title') @lang('translation.Permissions') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Admin @endslot @slot('title') Permissions Management @endslot @endcomponent
Permissions Management
Add New Permission Smart View @if(request('onlyTrashed')) View Active View All @elseif(request('withTrashed')) View Active View Deleted @else View Deleted View All @endif
@if(session('success'))
{{ session('success') }}
@endif
@if(request()->has('search')) @endif
@forelse($permissions as $permission) @empty @endforelse
# Permission Name Guard Name Created At Actions
{{ $loop->iteration + ($permissions->currentPage() - 1) * $permissions->perPage() }} {{ $permission->name }} {{ $permission->guard_name }} {{ $permission->created_at->format('M d, Y') }}
@if($permission->trashed())
@csrf @method('PUT')
@csrf @method('DELETE')
@else
@csrf @method('DELETE')
@endif

No permissions found

Try adjusting your search or filter to find what you're looking for.

Add New Permission
Showing {{ $permissions->firstItem() }} to {{ $permissions->lastItem() }} of {{ $permissions->total() }} entries
{{ $permissions->withQueryString()->onEachSide(1)->links() }}
@endsection @section('script') @endsection @section('script-bottom') @endsection