for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Controllers\Front;
use App\Http\Controllers\Controller;
use App\Models\Enums\SpecialArticle;
class HomeController extends Controller
{
public function index()
$article = article(SpecialArticle::HOME);
return view('front.home.index', compact('article'));
}