This video will be available to
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
Bob Cravens

Bob Cravens

Your Instructor
more »
Owner
TekFoundry
Wisconsin
United States
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.