@extends('layout.backend.main');
@section('css')
@endsection
@section('page_content')
| ID |
Role Name |
Created Date |
Created Time |
Action |
@forelse ($roles as $role)
|
{{ $role->id }}
|
{{ $role->name }} |
{{ Carbon::parse($role->created_at)->format('d M, Y') }} |
{{ Carbon::parse($role->created_at)->format('h.i A') }} |
|
@empty
| No role found |
@endforelse
{{ $roles->links('vendor.pagination.custom') }}
@endsection