Files
w4rpservices/app/Http/Controllers/FleetsController.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

38 lines
604 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class FleetsController extends Controller
{
public function __construct() {
$this->middleware('auth');
$this->middleware('role:User');
}
public function displayRegisterFleet() {
return view('fleets.registerfleet');
}
public function displayStandingFleet() {
return view('fleets.displaystanding');
}
public function registerFleet() {
}
public function createWing() {
}
public function createSquad() {
}
public function addPilot() {
}
}