{{-- mainLayouts extends --}} @extends('layouts.contentLayoutMaster') {{-- Page title --}} @section('title', 'Role') @section('content')
Add Role
Role List
@foreach ($roles as $role) @endforeach
ID
Title
Permissions
{{$role->id}}
{{$role->title}}
@foreach ($role->permissions as $item)
{{$item->title}}
@endforeach
View
Edit
Delete
@endsection