27f782f659
refactored mining tax invoice jobs with a job chain and new directory structure added views and forms for mining operations added navbar button for mining operations refactored how admin dashboard controller checks for permissions versus roles
29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
@extends('layouts.admin.b4')
|
|
@section('content')
|
|
<br>
|
|
<div class="container">
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h2>Alliance Mining Operations Form</h2>
|
|
<h4>Enter in the information, then hit submit.</h4>
|
|
</div>
|
|
<div class="card-body">
|
|
{!! Form::open(['action' => 'MiningTaxes\MiningTaxesAdminController@submitMiningOperationForm', method' => 'POST']) !!}
|
|
<div class="form-group col-md-6">
|
|
{{ Form::label('name', 'Mining Operation Name') }}
|
|
{{ Form::text('name', '', ['class' => 'form-control']) }}
|
|
</div>
|
|
<div class="form-group col-md-6">
|
|
{{ Form::label('date', 'Date') }}
|
|
{{ Form::date('date', \Carbon\Carbon::now(), ['class' => 'form-control'] }}
|
|
</div>
|
|
<div class="form-group col-md-6">
|
|
{{ Form::label('structure', 'Mining Structure') }}
|
|
{{ Form::select('structure', $structures, 'None', ['class' => 'form-control']) }}
|
|
</div>
|
|
{{ Submit::submit('Submit', ['class' => 'btn btn-primary']) }}
|
|
{!! Form::close() !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |