@extends('layouts.app') @section('css') {{-- css --}} @endsection @section('title', 'Role Management') @section('breadcrumb') @endsection @section('content')
Role Management
@if(Session::has('success_msg')) @endif @if(Session::has('error_msg')) @endif @foreach ($roles as $key => $val ) @endforeach
Role Name Description Actions
{{ $val->name }} {{ $val->description }}
@endsection @section('js') {{-- js --}} {{--End js --}} @endsection