xmrmemes/app/Http/Controllers/DashboardController.php

38 lines
836 B
PHP
Raw Normal View History

2021-07-16 06:35:54 +00:00
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\Meme;
2021-08-06 21:01:16 +00:00
use Artesaos\SEOTools\Facades\SEOTools;
2021-07-16 06:35:54 +00:00
class DashboardController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Contracts\Support\Renderable
*/
public function index()
{
2021-08-06 21:01:16 +00:00
SEOTools::setTitle('Dashboard');
if (\Auth::user()->is_admin === 1) {
$memes_pending = Meme::withoutGlobalScope('approved')->where('is_approved', 0)->get();
}
$data = [
'memes_pending' => $memes_pending ?? null,
];
return view('dashboard', ['data' => $data]);
2021-07-16 06:35:54 +00:00
}
}