@extends('layouts/default') {{-- Page title --}} @section('title') {{ $group->name }} @parent @stop @section('header_right') @endsection {{-- Page content --}} @section('content') @if (is_array($group->decodePermissions())) @foreach ($group->decodePermissions() as $permission_name => $permission)
  • {!! ($permission == '1') ? ''.trans('general.yes').': ' : ''.trans('general.no').': ' !!} {{ e(str_replace('.', ': ', ucwords($permission_name))) }}
  • @endforeach @else

    {{ trans('admin/groups/titles.no_permissions') }}

    @endif
    @stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop