This commit is contained in:
2019-07-22 21:19:35 -05:00
parent 73613d901f
commit ec4fc33137

View File

@@ -1,33 +0,0 @@
<?php
namespace App\Http\Controllers\Stocks;
use Illuminate\Http\Request;
/**
* This class display data related to structures and how much fuel of a given type they hold.
* This will mostly be used for jump gates, cyno beacons, and cyno jammers.
*/
class StockController extends Controller
{
public function __construct() {
$this->middleware('auth');
$this->middleware('role:User');
}
public function displayStock() {
}
public function displayStation($stationId) {
}
public function displayStockForm() {
}
public function processStockForm(Request $request) {
}
}