MIF_E31221247/app/Http/Controllers/LandingpageController.php

12 lines
189 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class LandingpageController extends Controller
{
public function index(){
return view('home.home');
}
}