bro you are the only one in whole youtube who explain with this clarity ♥
@dagocjohncarlw.2472 жыл бұрын
It is possible if separated login ? Like for users is mobile app and admin is website?
@riksonramalho6469 Жыл бұрын
Perfect. 😍🤓
@Ahmed-kl7kd Жыл бұрын
Superb
@godstimeyusuff75722 жыл бұрын
What if you want to add 1 more additional user?
@sarait1519 Жыл бұрын
still have access to the dashboard, where is the error ? Route::prefix('admin')->middleware(['auth'])->group(function(){ Route::get('/dashboard', [App\Http\Controllers\Admin\DashboardController::class, 'index']); });
@dailyanimeworld9822 жыл бұрын
what extension are you using in this tutorial?
@almoatazbellahmostafa1750 Жыл бұрын
PHP Namespace Resolver
@Berettadr2 жыл бұрын
I cant redirect to admin/dashboard page if I login in as admin ?
@maryamechoujjaa9606 Жыл бұрын
Attempt to read property "role" on null how to fix it sir
@basel4952 жыл бұрын
Is there lesson about guards ..?
@NayskomMedia2 жыл бұрын
Will there be a course on creating a blog using react js and laravel?
@fundaofwebit2 жыл бұрын
Yes. Will be creating after this course.
@Starwishas2 жыл бұрын
at the end, why i cant go to admin/dashboard but to /login? and the page is expired
@dhimanscorner93332 жыл бұрын
Sir when you clicked on a home button it is not going to the admin dashboard. video time 17:42
@gypsy7622 жыл бұрын
i get error "Attempt to read property "headers" on null" when i direct to admin/dashboard as an user how to fix it ?
@fundaofwebit2 жыл бұрын
This error comes in middleware. And it occurred while checking the if condition, if it fails you can abort(403).
@happychristian13892 жыл бұрын
extension name for importing class?
@ismailhosain75142 жыл бұрын
php namespace resolver
@manmohansinghbhanwal3065 Жыл бұрын
mera user logout nahi ho pa rha hai baki sab ho gya please help anyone
@selmoraaa Жыл бұрын
can i get source code? link not work
@spacelover28682 жыл бұрын
complete 😃😃😃😃
@annbonador2 жыл бұрын
How about preventing the admin from accessing the user page
@josemanuelherrero64952 жыл бұрын
Por favor, A qué se debe este error?
@learner53872 жыл бұрын
I am following this today when laravel 9 is released. After adding a column when i run php artisan migrate give me error on console : C:\xampp\htdocs\wordpress\laravel\blog\vendor\laravel\framework\src\Illuminate\Database\Connection.php:501 PDOException::("SQLSTATE[42S01]: Base table or view already exists: 1050 Table 'users' already exists") 2 C:\xampp\htdocs\wordpress\laravel\blog\vendor\laravel\framework\src\Illuminate\Database\Connection.php:501 PDOStatement::execute() Can you please help me?
@vamshipatel5064 Жыл бұрын
php artisan migrate:fresh
@tareksouid2672 жыл бұрын
Target class [App\Http\Controllers\Admin\dashboardController] does not exist.
@fundaofwebit2 жыл бұрын
This DashboardController doesn't exist in your controller folder. If you have created it. The check the spelling of it.
@josemanuelherrero64952 жыл бұрын
TypeError PHP 8.1.2 9.16.0 Illegal offset type
@spacelover28682 жыл бұрын
17:40 not working bro its redirect to home
@fundaofwebit2 жыл бұрын
Check your role_as in users table, it should be 1 for admin. Or you might be login with wrong user role_as
@spacelover28682 жыл бұрын
@@fundaofwebit spelling mistake 🤯role_as to role_us 😪😪😪😪😪
@nareshthakur23922 жыл бұрын
bhai kuch samajh ni aya
@พัฒนธรไฝพรหม-น4น2 жыл бұрын
Illuminate \ Contracts \ Container \ BindingResolutionException Target class [isAdmin] does not exist.
@พัฒนธรไฝพรหม-น4น2 жыл бұрын
Who have problem like me ?
@fundaofwebit2 жыл бұрын
You have not assigned the middleware in kernel.php file. The is error is starting from your web.php file in middleware.