@extends('layout') @section('h4-page', __("Permission")) @section('contents')
@if (session('success')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@forelse (@$data as $key => $item) @empty @endforelse
{{__("Name")}} {{__("Action")}}

{{ @$item->name }}

{{ __('edit') }} {{-- Edit --}}
{{__("NoDataFound")}}
{{ $data->links('pagination::bootstrap-5') }}
@endsection @section('scripts') @endsection