Laracon DB
Laracon DB
Talks for "authentication"
Laravel 5.3 Overview

Taylor Otwell presents the new features in Laravel 5.3 at Laracon. He covers major updates including a new mailable system for cleaner email handling, Laravel Scout for full-text search functionality, Laravel Passport for OAuth2 authentication, and a new notification system. The talk demonstrates practical implementations of these features with live coding examples and explains how they simplify common development tasks.

Lumen, Guzzle, & Swagger

The talk focuses on building and documenting APIs using Laravel/Lumen, with a particular emphasis on using Swagger/OpenAPI for API documentation and bridging the gap between client and server sides. The speaker discusses various tools and best practices for API development, including authentication methods, content negotiation, and code generation from Swagger documentation. The presentation concludes with a musical number encouraging developers to use Swagger for better API development.

APIs With Laravel

TJ Miller presents a comprehensive talk on building and maintaining Laravel APIs, covering best practices from planning through implementation. He emphasizes the importance of documentation, resource responses, schema validation, and maintaining API contracts while sharing practical workflows and implementation patterns developed over years of experience building critical payment processing APIs.

Some Shifty Bits

The talk focuses on lesser-known but powerful Laravel features that analysis of Laravel Shift data suggests are underutilized. The speaker, Jase McCreary (creator of Laravel Shift), demonstrates various Laravel features including model casting, authorization gates, signed URLs, and helper methods that can make code more expressive and maintainable while reducing custom implementation code.

The Tao Of Laravel

Taylor Otwell introduces Laravel Spark, a new scaffolding tool that helps developers quickly build SaaS applications. The talk covers how Spark provides out-of-the-box functionality for common SaaS features like billing, subscriptions, team management, and two-factor authentication. Otwell emphasizes how Spark aims to remove boilerplate code and let developers focus on building their core application features, making it easier to turn side project ideas into reality.

JWT - To authentication & beyond!

This talk focuses on simplifying API authentication using JSON Web Tokens (JWT). The speaker shares his journey from using database-stored tokens to implementing JWT, explaining the structure, security considerations, and best practices. He introduces his PHP library for JWT implementation and demonstrates how it handles token creation, validation, and various use cases like blacklisting and whitelisting tokens.

The Laravel developer's guide to Vue SPAs

Jess Archer shares her experience building a single page application (SPA) with Laravel and Vue.js, focusing on practical solutions to common challenges. She discusses authentication approaches, state management with Vuex, and frontend optimization techniques based on lessons learned while building Giftie Duck, a gift reminder service.