Magento 2
When
you install the Magento 2 then visit 1st Dashboard
1st
You will see this structure
This
is landing page.
• When you will be login admin panel
then you visit Dashboard.
• Then you will run these command
then...
09 March, 2022
06 March, 2022
Laravel available router methods
Programing Coderfunda
March 06, 2022
Laravel, php
No comments
laravel available router methods// Check if route is ***Request::route()->named("YourRouteNameView")Route::get($uri, $callback);Route::post($uri, $callback);Route::put($uri, $callback);Route::patch($uri, $callback);Route::delete($uri, $callback);Route::options($uri, $callbac...
Laravel authentication in laravel 8
Programing Coderfunda
March 06, 2022
Laravel, php
No comments
laravel authentication in laravel 8composer create-project laravel/laravel TestProjectcomposer require laravel/uiphp artisan ui bootstrap --authnpm installnpm run dev1. if(is_global_laravel_installer_installed){ larvel new laravel_project_name }else{ composer create-project laravel/laravel...
Laravel Auth::logoutOtherDevices
Programing Coderfunda
March 06, 2022
Laravel, php
No comments
laravel Auth::logoutOtherDevices <?php Laravel,php Firstly uncomment out the: \Illuminate\Session\Middleware\AuthenticateSession::class, line from App\Http Kernel.php class. Secondly add this line in your login controller function just after login attempt successfully...
Laravel auth user in constructor
Programing Coderfunda
March 06, 2022
Laravel, php
No comments