19 lines
305 B
PHP
19 lines
305 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App;
|
|
use Inertia\Inertia;
|
|
|
|
class FrontHomeController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
if (App::environment('local')) {
|
|
return Inertia::render('welcome');
|
|
}
|
|
|
|
return Inertia::render('comingsoon');
|
|
}
|
|
}
|