diff --git a/resources/views/structures/admin/choosecorporation.blade.php b/resources/views/structures/admin/choosecorporation.blade.php deleted file mode 100644 index 957cde62c..000000000 --- a/resources/views/structures/admin/choosecorporation.blade.php +++ /dev/null @@ -1,13 +0,0 @@ -@extends('layouts.b4') -@section('content') -
-

Pick the Corporation

- {!! Form::open(['action' => 'Structures\StructureController@displayCorpTaxes', 'method' => 'GET']) !!} -
- {{ Form::label('corpId', 'Corporation') }} - {{ Form::select('corpId', $corps, null, ['class' => 'form-control']) }} -
- {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} - {!! Form::close() !!} -
-@endsection \ No newline at end of file diff --git a/resources/views/structures/admin/choosecorptaxes.blade.php b/resources/views/structures/admin/choosecorptaxes.blade.php deleted file mode 100644 index 840090968..000000000 --- a/resources/views/structures/admin/choosecorptaxes.blade.php +++ /dev/null @@ -1,29 +0,0 @@ -@extends('layouts.b4') -@section('content') - -
-
-
- Structure Taxes -
-
- - - - - - - - @foreach($totalTaxes as $tax) - - - - - @endforeach - -
MonthMarket TaxMarket Revenue Minus Fuel Cost
{{ $tax['date'] }}{{ $tax['tax'] }}{{ $tax['revenue'] }} -
-
-
-
-@endsection \ No newline at end of file diff --git a/resources/views/structures/admin/dashboard.blade.php b/resources/views/structures/admin/dashboard.blade.php deleted file mode 100644 index b1d8a142f..000000000 --- a/resources/views/structures/admin/dashboard.blade.php +++ /dev/null @@ -1,60 +0,0 @@ -@extends('layouts.b4') -@section('content') -
-
-

Structure Dashboard

-
-
-
-
-
-
- Add Tax Ratio for Structure -
-
- {!! Form::open(['action' => 'Structures\StructureAdminController@storeTaxRatio', 'method' => 'POST']) !!} -
- {{ Form::label('corpId', 'Corporation ID:') }} - {{ Form::text('corpId', '', ['class' => 'form-control']) }} -
-
- {{ Form::label('corporation', 'Corporation Name') }} - {{ Form::text('corporation', '', ['class' => 'form-control']) }} -
-
- {{ Form::label('type', 'Structure Type') }} - {{ Form::select('type', ['Refinery' => 'Refinery', 'Market' => 'Market'], null, ['class' => 'form-control']) }} -
-
- {{ Form::label('ratio', 'Tax Ratio') }} - {{ Form::text('ratio', '', ['class' => 'form-control']) }} -
- {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} - {!! Form::close() !!} -
-
-
-
- Update Tax Ratio for Structure -
-
- {!! Form::open(['action' => 'Structures\StructureAdminController@updateTaxRatio', 'method' => 'POST']) !!} -
- {{ Form::label('corporation', 'Corporation Name') }} - {{ Form::text('corporation', '', ['class' => 'form-control']) }} -
-
- {{ Form::label('type', 'Structure Type') }} - {{ Form::select('type', ['Refinery' => 'Refinery', 'Market' => 'Market'], null, ['class' => 'form-control']) }} -
-
- {{ Form::label('ratio', 'Tax Ratio') }} - {{ Form::text('ratio', '', ['class' => 'form-control']) }} -
- {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} - {!! Form::close() !!} -
-
-
-
-@endsection \ No newline at end of file diff --git a/resources/views/structures/register/register.blade.php b/resources/views/structures/register/register.blade.php deleted file mode 100644 index a023fe5d6..000000000 --- a/resources/views/structures/register/register.blade.php +++ /dev/null @@ -1,19 +0,0 @@ -@extends('layouts.b4') -@section('content') -
-

Register Structure

- {!! Form::open(['action' => 'Structures\RegisterStructureController@storeStructure', 'method' => 'POST']) !!} -
- {{ Form::label('region', 'Region') }} - {{ Form::text('region', '', ['class' => 'form-control']) }} - {{ Form::label('system', 'System') }} - {{ Form::text('system', '', ['class' => 'form-control']) }} - {{ Form::label('structure_name', 'Structure Name') }} - {{ Form::text('structure_name', '', ['class' => 'form-control']) }} - {{ Form::label('structure_type', 'Structure Type') }} - {{ Form::select('structure_type', ['Refinery' => 'Refinery', 'Market' => 'Market'], null, ['class' => 'form-control']) }} -
- {{ Form::submit('Submit', ['class' => 'btn btn-primary']) }} - {!! Form::close() !!} -
-@endsection \ No newline at end of file diff --git a/resources/views/structures/register/taxratio.blade.php b/resources/views/structures/register/taxratio.blade.php deleted file mode 100644 index e69de29bb..000000000 diff --git a/resources/views/structures/user/display.blade.php b/resources/views/structures/user/display.blade.php deleted file mode 100644 index 7cf47edd1..000000000 --- a/resources/views/structures/user/display.blade.php +++ /dev/null @@ -1,4 +0,0 @@ -@extends('layouts.b4') -@section('content') - -@endsection \ No newline at end of file diff --git a/resources/views/structures/user/reprocessingtaxes.blade.php b/resources/views/structures/user/reprocessingtaxes.blade.php deleted file mode 100644 index 0c04b187a..000000000 --- a/resources/views/structures/user/reprocessingtaxes.blade.php +++ /dev/null @@ -1,30 +0,0 @@ -@extends('layouts.b4') -@section('content') - -
-
-
- Structure Industry Taxes -
-
- - - - - - - - @foreach($taxes as $tax) - - - - - - @endforeach - -
MonthReprocessing Taxes Minus Fuel Cost / MonthReprocessing Revenue
{{ $tax['date'] }}{{ $tax['tax'] }}{{ $tax['revenue'] }}
-
-
-
- -@endsection \ No newline at end of file diff --git a/resources/views/structures/user/taxes.blade.php b/resources/views/structures/user/taxes.blade.php deleted file mode 100644 index 0c7532d5a..000000000 --- a/resources/views/structures/user/taxes.blade.php +++ /dev/null @@ -1,29 +0,0 @@ -@extends('layouts.b4') -@section('content') - -
-
-
- Structure Taxes -
-
- - - - - - - - @foreach($totalTaxes as $tax) - - - - - @endforeach - -
MonthMarket Tax Minus Fuel Cost / MonthMarket Revenue
{{ $tax['date'] }}{{ $tax['tax'] }}{{ $tax['revenue'] }} -
-
-
-
-@endsection \ No newline at end of file diff --git a/resources/views/structures/user/taxhistory.blade.php b/resources/views/structures/user/taxhistory.blade.php deleted file mode 100644 index 81299c08d..000000000 --- a/resources/views/structures/user/taxhistory.blade.php +++ /dev/null @@ -1,29 +0,0 @@ -@extends('layouts.b4') -@section('content') - -
-
-
- Structure Taxes -
-
- - - - - - - - @foreach($totalTaxes as $tax) - - - - - @endforeach - -
MonthMarket Tax Minus Fuel Cost / MonthMarket Revenue
{{ $tax['start'] }}{{ $tax['tax'] }}{{ $tax['revenue'] }} -
-
-
-
-@endsection \ No newline at end of file diff --git a/resources/views/structures/user/taxratio.blade.php b/resources/views/structures/user/taxratio.blade.php deleted file mode 100644 index e69de29bb..000000000