@extends('admin.layouts.app')
@push('style')
@endpush
{{-- @section('pagetitlesection')
{{ __('Dashboard') }}
@endsection --}}
@section('content')
Role List
{{--
View all --}}
Role Name |
Role Type |
Created On |
Action |
@forelse ($roleList as $role)
{{ $role->name }} |
{{ $role->role_type }} |
{{ date('d-m-Y', strtotime($role->created_at)) }} |
{{--
@switch($role->status)
@case(1)
Active
@break
@case(0)
Inactive
@break
@default
Deleted
@endswitch
| --}}
|
@empty
No
Data Yet |
@endforelse
@endsection
@push('scripts')
@endpush