@extends('home') @section('title') {{ __('Roles') }} @endsection @section('styles') @endsection @section('content')
@if (isRoot()) {{ __('New') }} @endif
@foreach ($roles as $index => $role) @endforeach
{{ __('Title') }} {{ __('Permissions') }}
{{ $loop->index + $roles->firstItem() }} {{ $role->display_name }} {{ $role->description }} {!! __('Edit') !!}
@endsection @section('scripts') @endsection