19 lines
309 B
PHP
19 lines
309 B
PHP
<?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');
|
|
}
|
|
}
|