@extends('layouts.b4') @section('content') {!! Form::open(['action' => 'SRP\SRPAdminController@processSRPRequest', 'method' => 'POST']) !!} @if($requests != null)
| Timestamp | Pilot | Fleet Commander | zKillboard Link | Total Loss Value | Type of Ship | Fleet Type | Actual SRP | Notes | Pay Out | @foreach($requests as $row)
|---|---|---|---|---|---|---|---|---|---|
| {{ $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']) }} |