diff --git a/resources/views/admin/dashboard.blade.php b/resources/views/admin/dashboard.blade.php index e326dc420..9020ea3f6 100644 --- a/resources/views/admin/dashboard.blade.php +++ b/resources/views/admin/dashboard.blade.php @@ -5,17 +5,19 @@

Admin Dashboard


- +
-
+
@@ -48,7 +50,7 @@ -
+
@@ -69,7 +71,7 @@
-
+
@@ -89,7 +91,7 @@
-
+
@@ -139,7 +141,7 @@
-
+
{!! Form::open(['action' => 'Wiki\WikiController@purgeUsers', 'method' => 'POST']) !!} @@ -152,7 +154,7 @@
-
+
diff --git a/resources/views/admin/olddashboard.blade.php b/resources/views/admin/olddashboard.blade.php new file mode 100644 index 000000000..f94845e55 --- /dev/null +++ b/resources/views/admin/olddashboard.blade.php @@ -0,0 +1,340 @@ +@extends('layouts.b4') +@section('content') + +
+

Admin Dashboard

+
+
+
+ + + + + + + + @foreach($userArr as $user) + + + + + + + @endforeach + +
NameRolePermissionsAction
{{ $user['name'] }}{{ $user['role'] }} + @foreach($user['permissions'] as $perm) + {{ implode(', ', $perm) }} + @endforeach + + {!! Form::open(['action' => 'Dashboard\AdminController@removeUser', 'method' => 'POST']) !!} + {{ Form::hidden('user', $user['name']) }} + {{ Form::submit('Remove User', ['class' => 'btn btn-primary']) }} + {!! Form::close() !!} +
+ + + +
+
+
+
+
+ Add Permission for User +
+
+ {!! Form::open(['action' => 'Dashboard\AdminController@addPermission', 'method' => 'POST']) !!} +
+ {{ Form::label('user', 'User') }} + {{ Form::select('user', $users, null, ['class' => 'form-control']) }} + {{ Form::select('permission', $permissions, null, ['class' => 'form-control']) }} +
+ {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} + {!! Form::close() !!} +
+
+
+
+
+
+
+
+
+
+ Modify User Role +
+
+ {!! Form::open(['action' => 'Dashboard\AdminController@modifyRole', 'method' => 'POST']) !!} +
+ {{ Form::label('user', 'User') }} + {{ Form::select('user', $users, null, ['class' => 'form-control']) }} +
+ {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} + {!! Form::close() !!} +
+
+
+
+
+
+
+
+
+
+
+ Add Allowed Login +
+
+ {!! Form::open(['action' => 'Dashboard\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' => 'Dashboard\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() !!} +
+
+
+
+
+
+
+
+
+ {!! Form::open(['action' => 'Wiki\WikiController@purgeUsers', 'method' => 'POST']) !!} +
+ {{ Form::label('admin', 'This action will log the administrator who peformed the action.') }} + {{ Form::hidden('admin', auth()->user()->character_id) }} +
+ {{ Form::submit('Purge Wiki', ['class' => 'btn btn-primary']) }} + {!! Form::close() !!} +
+
+
+
+
+
+
+
+
+ PI Taxes +
+
+
+ + + + + + @foreach($pis as $pi) + + + + + @endforeach + +
MonthPI Taxes
{{ $pi['date'] }}{{ $pi['gross'] }}
+
+
+
+
+
+
+ Office Taxes +
+
+ + + + + + + @foreach($offices as $office) + + + + + @endforeach + +
MonthOffice Taxes
{{ $office['date'] }}{{ $office['gross'] }}
+
+
+
+
+
+
+ Industry Taxes +
+
+ + + + + + + @foreach($industrys as $industry) + + + + + @endforeach + +
MonthIndustry Taxes
{{ $industry['date'] }}{{ $industry['gross'] }}
+
+
+
+
+
+
+
+
+
+
+
+ Reprocessing Taxes +
+
+ + + + + + + @foreach($reprocessings as $reprocessing) + + + + + @endforeach + +
MonthReprocessing Taxes
{{ $reprocessing['date'] }}{{ $reprocessing['gross'] }}
+
+
+
+
+
+
+ Market Taxes +
+
+ + + + + + + @foreach($markets as $market) + + + + + @endforeach + +
MonthMarket Taxes
{{ $market['date'] }}{{ $market['gross'] }}
+
+
+
+
+
+
+ Jump Gate Taxes +
+
+ + + + + + + @foreach($jumpgates as $jumpgate) + + + + + @endforeach + +
MonthJump Gate Taxes
{{ $jumpgate['date'] }}{{ $jumpgate['gross'] }}
+
+
+
+
+
+
+
+
+
+
+ PI Transactions +
+
+ + + + + + + @foreach($pigross as $pi) + + + + + @endforeach + +
MonthPI Transactions
{{ $pi['date'] }}{{ $pi['gross'] }}
+
+
+
+
+ +
+
+ +
+
+
+ + + +@endsection \ No newline at end of file