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
12 lines
476 B
PHP
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 |