misuzu/public/index.php

9 lines
251 B
PHP
Raw Normal View History

<?php
2018-04-16 00:33:54 +00:00
use Misuzu\News\NewsPost;
require_once __DIR__ . '/../misuzu.php';
2018-04-16 00:33:54 +00:00
$featured_news = NewsPost::where('is_featured', true)->orderBy('created_at', 'desc')->take(3)->get();
echo $app->templating->render('home.landing', compact('featured_news'));