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