Files
w4rpservices/resources/views/fleets/displaystanding.blade.php
drkthunder02 a201986ef7 added scopes view
added fleets displays
added scopes display
modified routes file
added Fleet file in class Library
modified Finances Controller
add EsiScopesController
laid out fleet framework file in class library
2018-11-07 03:00:06 -06:00

12 lines
476 B
PHP

@extends('layouts.b4')
@section('content')
<div class="container">
<h2>Standing Fleet</h2>
<a href="{{ route('/fleets/addpilot', ['id' => $charId]) }}">Join Standing Fleet</a>
@if($fleetCommander == true)
<a href="{{ route('/fleets/{id}/createwing', ['id' => $fleetId]) }}">Create Wing</a>
<a href="{{ route('/fleets/{id}/createsquad', ['id' => $fleetId]) }}">Create Squad</a>
@endif
Display some other cool stuff about the fleet
</div>
@endsection