Dynamic Add Section

Full Stack Application with JWT authentication using Laravel and Angular

Full Stack Application with JWT authentication using Laravel and Angular | Complete Login Logout Signup and Profile process with full autherization of pages | Token Handling and passing to each componenet | Route handling in angular | Restrict unauthorized page access | Proper signup and login form with complete validation |Solve cross origin problem in laravel site with middleware | API creation and using that API register and login using angular | Create service to call API

Read more

Laravel Soft Delete | Laravel 8 | Learning Points

Laravel Soft Delete | Laravel 8 | Learning Points

In this video we are going to discuss about laravel softdelete option. So how Soft Delete works In Laravel. When models are soft deleted, they are not actually removed from your database. User can delete records from there list or from there place but it will not physically delete from database. It basically changes some flag in table. When need we can restore that also. In this video I will explain each and every things from very scratch and also learn about restoration process.

Read more

Laravel Package Development

Building a laravel package from scratch | Step by step package creation tutorial | Laravel Package Development | How to create laravel package | Laravel Tutorial | Learning Points

Here we will just create a package to calculate data. For demo purpose I just create addition and subtraction operation. We will get full concept from package creation and create some functionality inside the package.

Read more

Laravel Custom Authentication

Laravel Custom Authentication | Registration, Login, Logout Process | Laravel login with session | Learning Points

Custom Authentication Steps :
1. Install Laravel Application
2. Setup laravel project
3. Create controller and methods.
4. Create link for login and registration url.
5. Create login and registration page
6. Add bootstrap in it, so that it will loop more professional. Or you can add your own style.
7. Link Login and registration page so that we can go one page to another page.
8. Create Model and migration.
9. Configure migration file for your requirement. Then migrate to generate table.
10. Create registration page
11. Add proper validation inside it
12. Register user into system with secure. Use Hash to secure your password.
13. Create for login page.
14. Validate all the fields like for email and password
15. Add logical validation on it. Like - email should exist in system, or match password with encrypted password.
16. Complete proper login process and open dashboard
17. From dashboard user can see there details
18. Can have logout option.
19. Add middlewire inside your application, so that unauthorized can be restrict.
20. Without login or registration user can't access their dashboard.
21. Once user logged in they can't see login and registration page until logged out.

Read more
Dynamic Add Section