Basic seeder, navigating to application page
This commit is contained in:
15
app/Http/Controllers/ApplicationController.php
Normal file
15
app/Http/Controllers/ApplicationController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ApplicationController extends Controller
|
||||
{
|
||||
public function show(Request $request)
|
||||
{
|
||||
return inertia('Applications/Show', [
|
||||
// 'application' => $request->route('application'),
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user