#Laravel
23 articles
Participated as Core Staff and LT Speaker at Laravel JP Conference
Learn about Laravel testing best practices and Dusk framework through a conference lightning talk experience.
Notes on Starting Functional Testing in Laravel
Start feature testing in Laravel with browser kit testing API and HTTP assertions for beginners building robust applications.
Setting Up a Laravel Environment with Laravel Homestead
Set up Laravel Homestead development environment using Vagrant and VirtualBox with SSH key configuration.
Introducing React to Laravel with Bower
A guide on integrating React into a Laravel project using Bower.
Trying Out Laravel's Deployment Tool: Laravel Envoy
Deploy Laravel applications efficiently with Envoy including tasks, git hooks, and Slack deployment notifications.
How to Use a Common Template for Error Messages in Laravel
Explains how to handle Laravel error pages with a common template.
Customizing Values Validated by Laravel Form Requests
Learn how to customize the values validated by Laravel form requests.
Excluding Table Names from Laravel's Many-to-Many Relations
Configure Laravel many-to-many relationships with custom pivot table names in Eloquent relationships.
Differences Between redirect('hoge') and redirect()->to('hoge') in Laravel
Understand the differences between redirect() and redirect()->to() helper functions and when to use each.
Directory Structure and Nginx Config for Integrating SPA with Laravel
Configure Laravel for single-page apps with proper directory structure and Nginx routing for frontend and backend.
Implementing the Repository Pattern in Laravel
A smart implementation pattern related to DB operations, let's discuss the repository pattern.
Creating Custom Artisan Command in Laravel 5.3
Implement custom Laravel Artisan commands to automatically generate repository files and streamline development workflow patterns.
Preparing to Write Tests with SQLite in Laravel 5.4
Configure Laravel 5.4 SQLite testing with in-memory databases, phpunit setup, and database migration automation.
Encountering CsrfToken Issues with AJAX in Laravel
Resolve Laravel CSRF token issues in AJAX requests by configuring VerifyCsrfToken middleware to exclude API routes.
Handling CORS with Laravel
Configure Laravel CORS handling with middleware for cross-origin requests and preflight request support using axios.
Using Events in Laravel
Manage methods you want to trigger during specific events like user registration or withdrawal using event listeners.
Implementing Forms with Laravel, React, and Superagent
Build AJAX forms combining Laravel APIs, React components, and Superagent for HTTP requests and validation.
Creating a Rest API with Laravel
Create Laravel REST APIs using ResourceControllers with authentication middleware and JSON responses.
Using Notifications in Laravel 5.2
Discussion on using Notifications in Laravel 5.2.
Distributing Validation Rules within the FormRequest's rules Method
Distribute conditional validation rules in Laravel FormRequest for multiple forms and REST API request handling.