forked from projects/fipamo
ro
2420ea193c
added a controller class to handle what is being served when the browser hits the root directory. very basic to start as it is just a placeholder until it's filled out
18 lines
273 B
PHP
18 lines
273 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Front;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
class StartController extends Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
return response()->file('../public/index.html');
|
|
}
|
|
}
|