reomved structure tax items from views

This commit is contained in:
2019-05-22 00:03:56 -05:00
parent c5a7a9e3ea
commit c93e8e26e4
10 changed files with 0 additions and 213 deletions

View File

@@ -1,13 +0,0 @@
@extends('layouts.b4')
@section('content')
<div class="container">
<h2>Pick the Corporation</h2>
{!! Form::open(['action' => 'Structures\StructureController@displayCorpTaxes', 'method' => 'GET']) !!}
<div class="form-group col-md-4">
{{ Form::label('corpId', 'Corporation') }}
{{ Form::select('corpId', $corps, null, ['class' => 'form-control']) }}
</div>
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
</div>
@endsection

View File

@@ -1,29 +0,0 @@
@extends('layouts.b4')
@section('content')
<div class="container">
<div class="card">
<div class="card-header">
Structure Taxes
</div>
<div class="card-body">
<table class="table table-striped">
<thead>
<th>Month</th>
<th>Market Tax</th>
<th>Market Revenue Minus Fuel Cost</th>
</thead>
<tbody>
@foreach($totalTaxes as $tax)
<tr>
<td>{{ $tax['date'] }}</td>
<td>{{ $tax['tax'] }}</td>
<td>{{ $tax['revenue'] }}<td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@endsection

View File

@@ -1,60 +0,0 @@
@extends('layouts.b4')
@section('content')
<div class="container">
<div class="row">
<p align="center"><h2>Structure Dashboard</h2></p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6 card">
<div class="card-header">
Add Tax Ratio for Structure
</div>
<div class="card-body">
{!! Form::open(['action' => 'Structures\StructureAdminController@storeTaxRatio', 'method' => 'POST']) !!}
<div class="form-group">
{{ Form::label('corpId', 'Corporation ID:') }}
{{ Form::text('corpId', '', ['class' => 'form-control']) }}
</div>
<div class="form-group">
{{ Form::label('corporation', 'Corporation Name') }}
{{ Form::text('corporation', '', ['class' => 'form-control']) }}
</div>
<div class="form-group">
{{ Form::label('type', 'Structure Type') }}
{{ Form::select('type', ['Refinery' => 'Refinery', 'Market' => 'Market'], null, ['class' => 'form-control']) }}
</div>
<div class="form-group">
{{ Form::label('ratio', 'Tax Ratio') }}
{{ Form::text('ratio', '', ['class' => 'form-control']) }}
</div>
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
</div>
</div>
<div class="col-md-6 card">
<div class="card-header">
Update Tax Ratio for Structure
</div>
<div class="card-body">
{!! Form::open(['action' => 'Structures\StructureAdminController@updateTaxRatio', 'method' => 'POST']) !!}
<div class="form-group">
{{ Form::label('corporation', 'Corporation Name') }}
{{ Form::text('corporation', '', ['class' => 'form-control']) }}
</div>
<div class="form-group">
{{ Form::label('type', 'Structure Type') }}
{{ Form::select('type', ['Refinery' => 'Refinery', 'Market' => 'Market'], null, ['class' => 'form-control']) }}
</div>
<div class="form-group">
{{ Form::label('ratio', 'Tax Ratio') }}
{{ Form::text('ratio', '', ['class' => 'form-control']) }}
</div>
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
</div>
</div>
</div>
</div>
@endsection

View File

@@ -1,19 +0,0 @@
@extends('layouts.b4')
@section('content')
<div class="container">
<h2>Register Structure</h2>
{!! Form::open(['action' => 'Structures\RegisterStructureController@storeStructure', 'method' => 'POST']) !!}
<div class="form-group">
{{ 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']) }}
</div>
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
</div>
@endsection

View File

@@ -1,4 +0,0 @@
@extends('layouts.b4')
@section('content')
@endsection

View File

@@ -1,30 +0,0 @@
@extends('layouts.b4')
@section('content')
<div class="container">
<div class="card">
<div class="card-header">
Structure Industry Taxes
</div>
<div class="card-body">
<table class="table table-striped">
<thead>
<th>Month</th>
<th>Reprocessing Taxes Minus Fuel Cost / Month</th>
<th>Reprocessing Revenue</th>
</thead>
<tbody>
@foreach($taxes as $tax)
<tr>
<td>{{ $tax['date'] }}</td>
<td>{{ $tax['tax'] }}</td>
<td>{{ $tax['revenue'] }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@endsection

View File

@@ -1,29 +0,0 @@
@extends('layouts.b4')
@section('content')
<div class="container">
<div class="card">
<div class="card-header">
Structure Taxes
</div>
<div class="card-body">
<table class="table table-striped">
<thead>
<th>Month</th>
<th>Market Tax Minus Fuel Cost / Month</th>
<th>Market Revenue</th>
</thead>
<tbody>
@foreach($totalTaxes as $tax)
<tr>
<td>{{ $tax['date'] }}</td>
<td>{{ $tax['tax'] }}</td>
<td>{{ $tax['revenue'] }}<td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@endsection

View File

@@ -1,29 +0,0 @@
@extends('layouts.b4')
@section('content')
<div class="container">
<div class="card">
<div class="card-header">
Structure Taxes
</div>
<div class="card-body">
<table class="table table-striped">
<thead>
<th>Month</th>
<th>Market Tax Minus Fuel Cost / Month</th>
<th>Market Revenue</th>
</thead>
<tbody>
@foreach($totalTaxes as $tax)
<tr>
<td>{{ $tax['start'] }}</td>
<td>{{ $tax['tax'] }}</td>
<td>{{ $tax['revenue'] }}<td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@endsection