@extends('layouts.simple.master')
@section('title', 'Roles List')
@section('css')
@endsection
@section('style')
@endsection
@section('breadcrumb-title')
Roles
@endsection
@section('breadcrumb-items')
Roles
@endsection
@section('content')
Id |
Name |
Actions |
@if(count($roles) > 0)
@foreach($roles as $index=>$role)
{{++$index;}} |
{{$role->name}} |
|
@endforeach
@endif
{!! $roles->links() !!}
@endsection
@section('script')
@endsection