#Laravel

23 articles

Participated as Core Staff and LT Speaker at Laravel JP Conference
Poetry 2019-02-16

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.

#Laravel#Lightning Talk#PHP
Notes on Starting Functional Testing in Laravel
Testing 2019-02-11

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.

#Laravel#Functional Testing
Setting Up a Laravel Environment with Laravel Homestead
Application 2018-04-11

Setting Up a Laravel Environment with Laravel Homestead

Set up Laravel Homestead development environment using Vagrant and VirtualBox with SSH key configuration.

#Laravel#Vagrant#VirtualBox#composer#homestead
Introducing React to Laravel with Bower
Application 2017-10-01

Introducing React to Laravel with Bower

A guide on integrating React into a Laravel project using Bower.

#Laravel#React
Trying Out Laravel's Deployment Tool: Laravel Envoy
Infrastructure 2017-10-01

Trying Out Laravel's Deployment Tool: Laravel Envoy

Deploy Laravel applications efficiently with Envoy including tasks, git hooks, and Slack deployment notifications.

#Laravel#Deployment
How to Use a Common Template for Error Messages in Laravel
Application 2017-10-01

How to Use a Common Template for Error Messages in Laravel

Explains how to handle Laravel error pages with a common template.

#Laravel
Customizing Values Validated by Laravel Form Requests
Application 2017-10-01

Customizing Values Validated by Laravel Form Requests

Learn how to customize the values validated by Laravel form requests.

#Laravel
Excluding Table Names from Laravel's Many-to-Many Relations
Application 2017-10-01

Excluding Table Names from Laravel's Many-to-Many Relations

Configure Laravel many-to-many relationships with custom pivot table names in Eloquent relationships.

#Laravel
Differences Between redirect('hoge') and redirect()->to('hoge') in Laravel
Application 2017-10-01

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.

#Laravel
Directory Structure and Nginx Config for Integrating SPA with Laravel
Infrastructure 2017-10-01

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.

#Laravel#React#Nginx
Implementing the Repository Pattern in Laravel
Application 2017-09-26

Implementing the Repository Pattern in Laravel

A smart implementation pattern related to DB operations, let's discuss the repository pattern.

#Laravel#Repository Pattern
Creating Custom Artisan Command in Laravel 5.3
Application 2017-09-26

Creating Custom Artisan Command in Laravel 5.3

Implement custom Laravel Artisan commands to automatically generate repository files and streamline development workflow patterns.

#Laravel#Repository Pattern#artisan
Preparing to Write Tests with SQLite in Laravel 5.4
Testing 2017-09-26

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.

#Laravel#SQLite
Encountering CsrfToken Issues with AJAX in Laravel
Application 2017-09-26

Encountering CsrfToken Issues with AJAX in Laravel

Resolve Laravel CSRF token issues in AJAX requests by configuring VerifyCsrfToken middleware to exclude API routes.

#AJAX#Laravel#React#superagent
Handling CORS with Laravel
Application 2017-09-26

Handling CORS with Laravel

Configure Laravel CORS handling with middleware for cross-origin requests and preflight request support using axios.

#Laravel#CORS
Using Events in Laravel
Application 2017-09-26

Using Events in Laravel

Manage methods you want to trigger during specific events like user registration or withdrawal using event listeners.

#Laravel
Implementing Forms with Laravel, React, and Superagent
Application 2017-09-26

Implementing Forms with Laravel, React, and Superagent

Build AJAX forms combining Laravel APIs, React components, and Superagent for HTTP requests and validation.

#Laravel#React#AJAX#Superagent
Creating a Rest API with Laravel
Application 2017-09-26

Creating a Rest API with Laravel

Create Laravel REST APIs using ResourceControllers with authentication middleware and JSON responses.

#API#Laravel#React#REST
Using Notifications in Laravel 5.2
Application 2017-09-26

Using Notifications in Laravel 5.2

Discussion on using Notifications in Laravel 5.2.

#Laravel
Distributing Validation Rules within the FormRequest's rules Method
Application 2017-09-26

Distributing Validation Rules within the FormRequest's rules Method

Distribute conditional validation rules in Laravel FormRequest for multiple forms and REST API request handling.

#Laravel