Bad Practise
إستخدام Scopes بدلا عن أعادة كتابة الشروط أكثر من مرة.
Bad Practice Example // Controller Code public function index() { $users = User::whereNotNull('activated_at')->select('name', 'email')->get(); } public function show(int $userId)…
اقرأ المقال