@extends('layouts.user.dashb4')
@section('content')
| Scope | @if($scopeCount > 0) @foreach($scopes as $scope)
|---|
| {{ $scope->scope }} |
| No Scopes |
| Permission | @if($permissionCount > 0) @foreach($permissions as $permission)
|---|
| {{ $permission->permission }} |
| No Permissions |
| Role | @if($roleCount > 0) @foreach($roles as $role)
|---|
| {{ $role->role }} |
| No Role |
| Alt Name | Character Id | Remove | @if($altCount > 0) @foreach($alts as $alt) {{ Form::open(['action' => 'Dashboard\DashboardController@removeAlt', 'method' => 'POST']) }}
|---|---|---|
| {{ $alt->name }} | {{ $alt->character_id }} | {{ Form::hidden('character', $alt->character_id) }} {{ Form::submit('Remove Alt', ['class' => 'btn btn-primary']) }} |
| No Alts on Record |