@extends('app')
@section('content')
| Role ID |
Role Name |
Created At |
Updated At |
Action |
@if(count($roles) > 0)
@foreach($roles as $key => $role)
| {{$role->id}} |
{{$role->name}} |
{{$role->created_at}}
|
{{$role->updated_at}}
|
|
@endforeach
@endif
| Role ID |
Role Name |
Created At |
Updated At |
Action |
@endsection
@section('script')
@endsection