@component('components.beardcrumb')
{{-- /*Page Title Goese Here in this slot variable*/ --}}
@slot('title')
@lang('role.index_title')
@endslot
@if(Auth::user()->can('Role create'))
{{-- /* Create New Route Will Be goes here */ --}}
@slot('route_name')
role.create
@endslot
@slot('btn_class')
btn btn-primary
@endslot
@slot('icon')
fa fa-plus
@endslot
@slot('btn_name')
@lang('role.create_new')
@endslot
@endif
@if(Auth::user()->can('Role trash'))
{{-- for deleted list index --}}
@slot('deleted_list_btn_name')
@lang('role.deleted_list')
@endslot
@slot('deleted_list_route')
role.trash_list
@endslot
@endif
@endcomponent
| @lang('common.sl') |
@lang('role.role_name') |
@lang('menu.permissions') |
@lang('common.actions') |
@push('footer_script')
{{--
--}}
@endpush
@endsection