@extends('layouts.b4') @section('content') {!! Form::open(['action' => 'SRP\SRPAdminController@processSRPRequest', 'method' => 'POST']) !!} @if($requests != null)
@foreach($requests as $row) @endforeach
Timestamp Pilot Fleet Commander zKillboard Link Total Loss Value Type of Ship Fleet Type Actual SRP Notes Pay Out
{{ $row['created_at'] }} {{ $row['pilot'] }} {{ $row['fc'] }} zKill Link {{ $row['loss'] }} {{ $row['ship_type'] }} {{ $row['fleet_type'] }} {{ $row['actual_srp'] }} {{ Form::textarea('notes', null, ['class' => 'form-control', 'id' => 'notes', 'rows' => 4, 'cols' => 30, 'style' => 'resize:none']) }} {{ Form::radio('pay_out', $row['id'], false, ['class' => 'form-control']) }}
{{ Form::submit('Pay Out', ['class' => 'form-control']) }} {!! Form::close() !!} @else

No Open SRP Requests

@endif @endsection