29 lines
591 B
PHP
29 lines
591 B
PHP
<?php
|
|
namespace App\Http\Controllers\Guest;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Model\Settings\System;
|
|
|
|
/**
|
|
* OuthouseController
|
|
*
|
|
* @package Controllers
|
|
* @subpackage Controller
|
|
* @author Ladybird <info@ladybirdweb.com>
|
|
*/
|
|
class OuthouseController extends Controller {
|
|
|
|
/**
|
|
* Display a listing of the resource.
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function get(System $note) {
|
|
$notes = $note->get();
|
|
foreach ($notes as $note) {
|
|
$content = $note->content;
|
|
}
|
|
return view('themes.default1.client.guest-user.guest', compact('heading', 'content'));
|
|
}
|
|
|
|
}
|