@extends('apex-layouts.main') @section('title','Roles List') @section('header-right') Total:  {{ $roles->total() }} Users @endsection @section('content')
@foreach($roles as $role) @endforeach
id role name created modified action
{{$role->id}} {{$role->roleName}} {{$role->created_at}} {{$role->updated_at}}
@if($roles->total() > $roles->perPage()) @endif
@endsection @section('scripts') @stop @section('styles') @stop