This video will be available to
subscribers on Thu, Jan 15, 2026.
subscribers on Thu, Jan 15, 2026.
You must be a subscriber to view this video.
Jan 15, 2026
16m:36s
Laravel Starter Kits & Fortify
Classification
Software Engineering | Frameworks | Laravel
Keywords
laravel | php
About This Episode:
In this video, we take our survey app to the next level by introducing Authentication, discussing installation options, and laying the groundwork for protected views and user-based access.
Along the way, we also apply several refactorizations to keep the codebase clean, flexible, and scalable.
π οΈ Refactorizations Completed
Before diving into authentication, we improved core structures:
π± Added a mobile menu using npm install flowbite + import "flowbite"
π¨ Updated mobile menu styling
π§© Created navigation, table, and form components for DRY code
ποΈ Moved layouts into Blade components (@extends('xxx') β )
π₯ Added new layout shells: empty and guest
π Authentication vs. Authorization
Authentication = Who are you?
Authorization = What are you allowed to do?
π Laravel Docs:
π Authentication β https://laravel.com/docs/12.x/authentication
π Authorization β https://laravel.com/docs/12.x/authorization
βοΈ Installation Options
Depending on your project setup, Laravel gives you multiple ways to integrate auth:
For New Apps
π Laravel Starter Kits (React, Vue, Livewire)
For Existing Apps
π¬οΈ Laravel Breeze
π‘οΈ Laravel Fortify
Useful Links:
π Starter Kits β https://laravel.com/docs/12.x/starter-kits
π Breeze β https://github.com/laravel/breeze
π Fortify β https://laravel.com/docs/12.x/fortify
π‘οΈ Laravel Fortify Setup (Summary)
Installation
1οΈβ£ composer require laravel/fortify
2οΈβ£ php artisan fortify:install
3οΈβ£ php artisan migrate
Configuration
Review settings in config/fortify
Example: Registration View Binding
// App/Providers/FortifyServiceProvider.php (partial)
public function boot(): void
{
Fortify::registerView(function () {
return view('auth.register');
});
}
If you're enjoying the series, don't forget to Like, Comment, and Subscribe β it helps TekCasts grow! π
#Laravel #PHP #LaravelFortify #LaravelBreeze #WebDevelopment #FullStack #CleanCode #BladeComponents #Authentication #Authorization #TekCasts
Along the way, we also apply several refactorizations to keep the codebase clean, flexible, and scalable.
π οΈ Refactorizations Completed
Before diving into authentication, we improved core structures:
π± Added a mobile menu using npm install flowbite + import "flowbite"
π¨ Updated mobile menu styling
π§© Created navigation, table, and form components for DRY code
ποΈ Moved layouts into Blade components (@extends('xxx') β )
π₯ Added new layout shells: empty and guest
π Authentication vs. Authorization
Authentication = Who are you?
Authorization = What are you allowed to do?
π Laravel Docs:
π Authentication β https://laravel.com/docs/12.x/authentication
π Authorization β https://laravel.com/docs/12.x/authorization
βοΈ Installation Options
Depending on your project setup, Laravel gives you multiple ways to integrate auth:
For New Apps
π Laravel Starter Kits (React, Vue, Livewire)
For Existing Apps
π¬οΈ Laravel Breeze
π‘οΈ Laravel Fortify
Useful Links:
π Starter Kits β https://laravel.com/docs/12.x/starter-kits
π Breeze β https://github.com/laravel/breeze
π Fortify β https://laravel.com/docs/12.x/fortify
π‘οΈ Laravel Fortify Setup (Summary)
Installation
1οΈβ£ composer require laravel/fortify
2οΈβ£ php artisan fortify:install
3οΈβ£ php artisan migrate
Configuration
Review settings in config/fortify
Example: Registration View Binding
// App/Providers/FortifyServiceProvider.php (partial)
public function boot(): void
{
Fortify::registerView(function () {
return view('auth.register');
});
}
If you're enjoying the series, don't forget to Like, Comment, and Subscribe β it helps TekCasts grow! π
#Laravel #PHP #LaravelFortify #LaravelBreeze #WebDevelopment #FullStack #CleanCode #BladeComponents #Authentication #Authorization #TekCasts
Short Bio:
Bob Cravens is a seasoned technology leader, software architect, and educator with a passion for empowering others through practical, real-world knowledge. As the founder of TekFoundry, Bob has dedicated his career to designing and delivering innovative software solutions that combine cutting-edge technology with elegant simplicity.
At TekCasts, Bob leverages over two decades of experience in software engineering, application architecture, and team leadership to create engaging, high-impact courses for developers and technology professionals. His instructional style is rooted in practical application, offering insights drawn from his extensive background in industries like medical devices and global technology consulting.
Bobβs expertise spans a variety of technologies and methodologies, including PHP/Laravel, FastAPI, and DevOps, as well as architecture best practices and team dynamics. Whether teaching foundational concepts or advanced strategies, heβs passionate about helping others turn complex challenges into streamlined solutions.
When not crafting elegant code or inspiring the next generation of tech innovators, Bob enjoys exploring the intersection of technology, business strategy, and creative problem-solving.
At TekCasts, Bob leverages over two decades of experience in software engineering, application architecture, and team leadership to create engaging, high-impact courses for developers and technology professionals. His instructional style is rooted in practical application, offering insights drawn from his extensive background in industries like medical devices and global technology consulting.
Bobβs expertise spans a variety of technologies and methodologies, including PHP/Laravel, FastAPI, and DevOps, as well as architecture best practices and team dynamics. Whether teaching foundational concepts or advanced strategies, heβs passionate about helping others turn complex challenges into streamlined solutions.
When not crafting elegant code or inspiring the next generation of tech innovators, Bob enjoys exploring the intersection of technology, business strategy, and creative problem-solving.