<?php namespace S\\Http\Controllers; use App\Http\Controllers\PublicController as CMSPublicController; use S\\Interfaces\WwwRepositoryInterface; class WwwPublicController extends CMSPublicController { /** * Constructor. * * @param type \S\Www\Interfaces\WwwRepositoryInterface $www * * @return type */ public function __construct(WwwRepositoryInterface $www) { $this->repository = $www; parent::__construct(); } /** * Show www's list. * * @param string $slug * * @return response */ protected function index() { $wwws = $this->repository->scopeQuery(function($query){ return $query->orderBy('id','DESC'); })->paginate(); return $this->theme->of('::public.www.index', compact('wwws'))->render(); } /** * Show www. * * @param string $slug * * @return response */ protected function show($slug) { $www = $this->repository->scopeQuery(function($query) use ($slug) { return $query->orderBy('id','DESC') ->where('slug', $slug); })->first(['*']); return $this->theme->of('::public.www.show', compact('www'))->render(); } }