structure request form

This commit is contained in:
2019-09-08 03:09:17 -05:00
parent 289b6859b6
commit cdd70ee3fa

View File

@@ -1,4 +1,39 @@
@extends('layouts.b4')
@section('content')
<br>
<div class="card">
<div class="card-header">
<h2>Structure Requests</h2>
</div>
<div class="card-body">
<table class="table table-striped table-bordered">
<thead>
<th>Corporation</th>
<th>System</th>
<th>Structure Size</th>
<th>Structure Type</th>
<th>Drop Time</th>
<th>FC</th>
<th>Requester</th>
<th>Completed</th>
<th>Delete</th>
</thead>
<tbody>
@foreach($reqs as $req)
<tr>
<td>{{ $req->corporation_name }}</td>
<td>{{ $req->system }}</td>
<td>{{ $req->structure_size }}</td>
<td>{{ $req->structure_type }}</td>
<td>{{ $req->requested_drop_time }}</td>
<td>{{ $req->assigned_fc }}</td>
<td>{{ $req->requester }}</td>
<td>{{ $req->completed }}</td>
<!-- Create Form -->
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
@endsection