未ログイントップにお知らせを置いてみた

This commit is contained in:
shibafu
2018-01-05 22:27:16 +09:00
parent 3ea9476aa8
commit 69f619e2af
2 changed files with 17 additions and 8 deletions

View File

@@ -27,17 +27,17 @@ class HomeController extends Controller
*/
public function index()
{
if (Auth::check()) {
$informations = Information::query()
->select('id', 'category', 'pinned', 'title', 'created_at')
->orderByDesc('pinned')
->orderByDesc('created_at')
->paginate(3);
$categories = Information::CATEGORIES;
$informations = Information::query()
->select('id', 'category', 'pinned', 'title', 'created_at')
->orderByDesc('pinned')
->orderByDesc('created_at')
->paginate(3);
$categories = Information::CATEGORIES;
if (Auth::check()) {
return view('home')->with(compact('informations', 'categories'));
} else {
return view('guest');
return view('guest')->with(compact('informations', 'categories'));
}
}
}