Files
w4rpservices/app/Http/Controllers/PlanetaryInteraction/PlanetaryInteractionController.php
2021-05-31 19:25:08 +09:00

22 lines
427 B
PHP

<?php
namespace App\Http\Controllers\PlanetaryInteraction;
//Internal Library
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Carbon\Carbon;
class PlanetaryInteractionController extends Controller
{
/**
* Create a new controller instance
*
* @return void
*/
public function __construct() {
$this->middleware('auth');
$this->middleware('role:User');
}
}