@extends('layouts.b4') @section('content')

Admin Dashboard


Remove User
{!! Form::open(['action' => 'AdminController@removeUser', 'method' => 'POST']) !!}
{{ Form::label('user', 'User') }} {{ Form::select('user', $data['users'], null, ['class' => 'form-control']) }}
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
Add Permission for User
{!! Form::open(['action' => 'AdminController@addPermission', 'method' => 'POST']) !!}
{{ Form::label('user', 'User') }} {{ Form::select('user', $data['users'], null, ['class' => 'form-control']) }} {{ Form::select('permission', $data['permissions'], null, ['class' => 'form-control']) }}
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
Modify User Role
{!! Form::open(['action' => 'AdminController@modifyRole', 'method' => 'POST']) !!}
{{ Form::label('user', 'User') }} {{ Form::select('user', $data['users'], null, ['class' => 'form-control']) }}
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
Add Allowed Login
{!! Form::open(['action' => 'AdminController@addAllowedLogin', 'method' => 'POST']) !!}
{{ Form::label('allowedEntityId', 'Allowed Entity ID') }} {{ Form::text('allowedEntityId', '', ['class' => 'form-control']) }}
{{ Form::label('allowedEntityType', 'Allowed Entity Type') }} {{ Form::select('allowedEtntityType', ['Corporation' => 'Corporation', 'Alliance' => 'Alliance'], null, ['class' => 'form-control']) }}
{{ Form::label('allowedEntityName', 'Allowed Entity Name') }} {{ Form::text('allowedEntityName', '', ['class' => 'form-control']) }}
{{ Form::label('allowedLoginType', 'Allowed Login Type') }} {{ Form::select('allowedLoginType', ['Legacy' => 'Legacy', 'Renter' => 'Renter'], null, ['class' => 'form-control']) }}
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
Remove Allowed Login
{!! Form::open(['action' => 'AdminController@removeAllowedLogin', 'method' => 'POST']) !!}
{{ Form::label('removeAllowedLogin', 'Remove Entity') }} {{ Form::select('removeAllowedLogin', $entities, null, ['class' => 'form-control']) }}
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} {!! Form::close() !!}
Placeholder for when a button is available
PI Taxes
@foreach($pis as $pi) @endforeach
Month PI Taxes
{{ $pi['date'] }} {{ $pi['gross'] }}
Office Taxes
@foreach($offices as $office) @endforeach
Month Office Taxes
{{ $office['date'] }} {{ $office['gross'] }}
Industry Taxes
@foreach($industrys as $industry) @endforeach
Month Industry Taxes
{{ $industry['date'] }} {{ $industry['gross'] }}

Reprocessing Taxes
@foreach($reprocessings as $reprocessing) @endforeach
Month Reprocessing Taxes
{{ $reprocessing['date'] }} {{ $reprocessing['gross'] }}
Market Taxes
@foreach($markets as $market) @endforeach
Month Market Taxes
{{ $market['date'] }} {{ $market['gross'] }}
Jump Gate Taxes
@foreach($jumpgates as $jumpgate) @endforeach
Month Jump Gate Taxes
{{ $jumpgate['date'] }} {{ $jumpgate['gross'] }}
@endsection