@extends('layouts.simple.master') @section('title', 'Roles List') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

Roles

@endsection @section('breadcrumb-items') @endsection @section('content')
@if(count($roles) > 0) @foreach($roles as $index=>$role) @endforeach @endif
Id Name Actions
{{++$index;}} {{$role->name}}
{!! $roles->links() !!}
@endsection @section('script') @endsection