@extends('layouts.app') @section('title', 'Permissions') @push('stylesheets') @include('partials.filter-card-styles') @include('partials.index-datatable-styles') @endpush @section('contents')
@forelse ($permissions as $data) {{ $data->id ?? '-' }} {{ $data->name ?? '-' }} {{ $data->description ?? '-' }} {{ $data->created_at->format('d M Y') }} @empty No permissions found. @endforelse
@endsection @push('scripts') @include('partials.index-datatable-scripts') @endpush