27 lines
1.0 KiB
PHP
27 lines
1.0 KiB
PHP
@extends('layouts.b4')
|
|
@section('content')
|
|
<div class="container">
|
|
<h2>Fleets</h2>
|
|
@if(isset($error))
|
|
<?php var_dump($error); ?>
|
|
@endif
|
|
@if(isset($data))
|
|
@for($i = 0; $i < count($data[0]); $i++)
|
|
<a href="{{ route('addpilot', [$data[1][$i], Auth::user()->character_id]) }}">Join {{ $data[2][$i] }}</a><br>
|
|
@if(Auth::user()->character_id == $data[0][$i])
|
|
<a href="{{ route('deletefleet', [$data[1][$i]]) }}">Delete Fleet</a><br><br>
|
|
@endif
|
|
<!-- Create form for inserting a user by name -->
|
|
@if(Auth::user()->character_id == $data[0][$i])
|
|
{!! Form::open(['action' => '/fleets/{fleet_id}/addpilot/{name}', 'method' => 'GET']) !!}
|
|
<div class="form-group col-md-4">
|
|
{{ Form::label('pilot', 'Pilot') }}
|
|
{{ Form::text('pilot', '', ['class' => 'form-control']) }}
|
|
</div>
|
|
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
|
|
{!! Form::close() !!}
|
|
@endif
|
|
@endfor
|
|
@endif
|
|
</div>
|
|
@endsection
|