master_template/app/Http/Controllers/WebsiteController.php

22 lines
363 B
PHP
Raw Normal View History

2024-06-10 12:21:58 +00:00
<?php
namespace App\Http\Controllers;
class WebsiteController extends Controller
{
private $path;
public function __construct()
{
$this->path = config('app.client_path');
}
public function home(){
2024-06-13 15:17:05 +00:00
return view($this->path.'.home');
}
public function single(){
return view($this->path.'.single');
2024-06-10 12:21:58 +00:00
}
}