first commit
This commit is contained in:
18
app/Http/Controllers/WebsiteController.php
Normal file
18
app/Http/Controllers/WebsiteController.php
Normal file
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
class WebsiteController extends Controller
|
||||
{
|
||||
private $path;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->path = config('app.client_path');
|
||||
}
|
||||
|
||||
public function home(){
|
||||
// return view($this->path.'home');
|
||||
return ('home');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user