1
0
Fork 0

Update SiteController

This commit is contained in:
Daniel Supernault 2020-12-26 20:28:12 -07:00
parent 799a4cba12
commit b74e14c4e5
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 6 additions and 10 deletions

View File

@ -62,20 +62,16 @@ class SiteController extends Controller
public function about() public function about()
{ {
return Cache::remember('site:about', now()->addHours(12), function() {
app()->setLocale('en');
$page = Page::whereSlug('/site/about')->whereActive(true)->first(); $page = Page::whereSlug('/site/about')->whereActive(true)->first();
$stats = [ $stats = Cache::remember('site:about:stats-v1', now()->addHours(12), function() {
'posts' => Status::whereLocal(true)->count(), return [
'posts' => Status::count(),
'users' => User::whereNull('status')->count(), 'users' => User::whereNull('status')->count(),
'admin' => User::whereIsAdmin(true)->first() 'admin' => User::whereIsAdmin(true)->first()
]; ];
if($page) {
return View::make('site.about-custom')->with(compact('page', 'stats'))->render();
} else {
return View::make('site.about')->with(compact('stats'))->render();
}
}); });
$path = $page ? 'site.about-custom' : 'site.about';
return view($path, compact('page', 'stats'));
} }
public function language() public function language()