@extends('backend.layouts.master') @section('pageTitle') Role @endsection @section('bodyCssClass') @endsection @section('pageContent') Role List Dashboard User Add New # Name Action @foreach($roles as $role) {{$loop->iteration}} {{ $role->name }} @if($role->id != AppHelper::USER_ADMIN) @endif @if($role->deletable) @csrf @endif @endforeach # Name Action @endsection @section('extraScript') @endsection