@extends('layouts.user.dashb4') @section('content')

Available Moons for Rent in Warped Intentions Sovreignty



@foreach($systems as $system)
@foreach($moons as $moon) @if($moon['system'] == $system) @if(isset($moon['ores'][0])) @if(in_array($moon['ores'][0]['ore_name'], $r4Goo)) @endif @if(in_array($moon['ores'][0]['ore_name'], $r8Goo)) @endif @if(in_array($moon['ores'][0]['ore_name'], $r16Goo)) @endif @if(in_array($moon['ores'][0]['ore_name'], $r32Goo)) @endif @if(in_array($moon['ores'][0]['ore_name'], $r64Goo)) @endif @else @endif @if(isset($moon['ores'][1])) @if(in_array($moon['ores'][1]['ore_name'], $r4Goo)) @endif @if(in_array($moon['ores'][1]['ore_name'], $r8Goo)) @endif @if(in_array($moon['ores'][1]['ore_name'], $r16Goo)) @endif @if(in_array($moon['ores'][1]['ore_name'], $r32Goo)) @endif @if(in_array($moon['ores'][1]['ore_name'], $r64Goo)) @endif @else @endif @if(isset($moon['ores'][2])) @if(in_array($moon['ores'][2]['ore_name'], $r4Goo)) @endif @if(in_array($moon['ores'][2]['ore_name'], $r8Goo)) @endif @if(in_array($moon['ores'][2]['ore_name'], $r16Goo)) @endif @if(in_array($moon['ores'][2]['ore_name'], $r32Goo)) @endif @if(in_array($moon['ores'][2]['ore_name'], $r64Goo)) @endif @else @endif @if(isset($moon['ores'][3])) @if(in_array($moon['ores'][3]['ore_name'], $r4Goo)) @endif @if(in_array($moon['ores'][3]['ore_name'], $r8Goo)) @endif @if(in_array($moon['ores'][3]['ore_name'], $r16Goo)) @endif @if(in_array($moon['ores'][3]['ore_name'], $r32Goo)) @endif @if(in_array($moon['ores'][3]['ore_name'], $r64Goo)) @endif @else @endif @endif @endforeach
Location First Ore First Quantity Second Ore Second Quantity Third Ore Third Quantity Fourth Ore Fourth Quantity Moon Worth Rental Cost Rent?
{{ $moon['moon_name'] }}{{ $moon['ores'][0]['ore_name'] }} {{ number_format(($moon['ores'][0]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][0]['ore_name'] }} {{ number_format(($moon['ores'][0]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][0]['ore_name'] }} {{ number_format(($moon['ores'][0]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][0]['ore_name'] }} {{ number_format(($moon['ores'][0]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][0]['ore_name'] }} {{ number_format(($moon['ores'][0]['quantity'] * 100.00), 2, ".", ",") }}% {{ $moon['ores'][1]['ore_name'] }} {{ number_format(($moon['ores'][1]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][1]['ore_name'] }} {{ number_format(($moon['ores'][1]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][1]['ore_name'] }} {{ number_format(($moon['ores'][1]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][1]['ore_name'] }} {{ number_format(($moon['ores'][1]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][1]['ore_name'] }} {{ number_format(($moon['ores'][1]['quantity'] * 100.00), 2, ".", ",") }}% {{ $moon['ores'][2]['ore_name'] }} {{ number_format(($moon['ores'][2]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][2]['ore_name'] }} {{ number_format(($moon['ores'][2]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][2]['ore_name'] }} {{ number_format(($moon['ores'][2]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][2]['ore_name'] }} {{ number_format(($moon['ores'][2]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][2]['ore_name'] }} {{ number_format(($moon['ores'][2]['quantity'] * 100.00), 2, ".", ",") }}% {{ $moon['ores'][3]['ore_name'] }} {{ number_format(($moon['ores'][3]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][3]['ore_name'] }} {{ number_format(($moon['ores'][3]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][3]['ore_name'] }} {{ number_format(($moon['ores'][3]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][3]['ore_name'] }} {{ number_format(($moon['ores'][3]['quantity'] * 100.00), 2, ".", ",") }}%{{ $moon['ores'][3]['ore_name'] }} {{ number_format(($moon['ores'][3]['quantity'] * 100.00), 2, ".", ",") }}% {{ number_format($moon->worth_amount, 0, ".", ",") }} {{ number_format($moon->rental_amount, 0, ".", ",") }} {!! Form::open(['action' => 'MiningTaxes\MiningTaxesController@DisplayMoonRentalForm', 'method' => 'POST']) !!} {{ Form::hidden('moon_id', $moon->moon_id) }} {{ Form::hidden('moon_name', $moon->moon_name) }} {{ Form::hidden('worth_amount', $moon->worth_amount) }} {{ Form::hidden('rental_amount', $moon->rental_amount) }} {{ Form::submit('Rent', ['class' => 'btn btn-danger']) }} {!! Form::close() !!}
@endforeach

Legend
R4 Ore
R8 Ore
R16 Ore
@endsection