Laravel is a very popular PHP development framework, which is popular for its simple and powerful API and comprehensive toolkit. In Laravel, "Actions" are a concept that allows you to build controllers and simplify your logic layer more easily. The following is a detailed introduction to the steps and practices on how to write Laravel Action.
- Create Action Class
First, you need to create an Action class. In Laravel 8 and above, you can create it through the Artisan command:
php artisan make:action MyAction
This will create a new class file "MyAction.php" for you in the app/Action directory. Now, we can start writing the logic of the Action.
- Writing the logic of Action
In your Action, you can define specific business logic for each method in the controller. Here we will create a method to handle the logic of user login.
<?php namespace App\Actions; use Illuminate\Support\Facades\Auth; class LoginUserAction { public function execute(array $credentials) { $attempt = Auth::attempt($credentials); if (!$attempt) { throw new \Exception('Invalid login credentials'); } return Auth::user(); } }
In the above example, we created an Action named LoginUserAction. It receives an array containing the user's login credentials, performs a login attempt, and throws an exception if there is an error, otherwise it returns the successfully authenticated user.
It is worth noting that we use Laravel's Auth facade to perform login operations. This allows us to easily leverage Laravel's authentication system.
- Using Action in Controller
Now, we have created an Action class and defined its logic. The next step is to use it in the controller.
The first step to using Action is to open the controller and add a use statement to introduce the Action class:
<?php namespace App\Http\Controllers; use App\Actions\LoginUserAction; use Illuminate\Http\Request; class AuthController extends Controller { public function login(Request $request, LoginUserAction $loginAction) { $credentials = $request->only(['email', 'password']); try { $user = $loginAction->execute($credentials); } catch (\Exception $e) { return response()->json([ 'message' => $e->getMessage() ], 401); } return response()->json(compact('user')); } }
In the above code, we referenced LoginUserAction from our own namespace . Then we added the login() method, whose first parameter is Laravel's Request object and whose second parameter is the LoginUserAction instance we created above.
In login(), we first extract the email and password based on the request content, and then call our Action to execute the logic through the $credentials parameters. If successful, we return the user in JSON format, otherwise we return an error message to the client.
- Call Action
Now we can access our login() method and call the execute method in the LoginUserAction class. We will pass an array containing some login credentials in the HTTP request and return the result.
Define the corresponding login route in the route:
<?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\AuthController; Route::post('/login', [AuthController::class, 'login'])->name('login');
Now we can access the /login route of our laravel application, which will look like this:
POST /login HTTP/1.1 Host: localhost:8000 Content-Type: application/json { "email": "user@example.com", "password": "my_password" }
This will trigger our The login() method defined in the controller calls LoginUserAction and passes in email and password as parameters.
- Summary
Laravel Action provides a simple, clean way to organize your business logic. By moving business logic out of the controller and into Action classes, you can achieve a lot of code reuse and maintainability improvements.
When using Laravel Action, you should follow the following two best practices:
- Each method should try to do only one thing.
- Avoid direct access to external classes or objects in the Action class, and use the method of passing variables to achieve common and repeated processing of data.
Finally, it should be noted that the Action function was introduced in Laravel 8. If you are using an older version of Laravel, you may need to manually create the Action class and store the class file in a appropriate location and then manually instantiate and call it in the controller.
The above is the detailed content of Detailed introduction to the writing steps and practices of Laravel Action. For more information, please follow other related articles on the PHP Chinese website!

This article guides building robust Laravel RESTful APIs. It covers project setup, resource management, database interactions, serialization, authentication, authorization, testing, and crucial security best practices. Addressing scalability chall

This article provides a comprehensive guide to installing the latest Laravel framework using Composer. It details prerequisites, step-by-step instructions, troubleshooting common installation issues (PHP version, extensions, permissions), and minimu

This article guides Laravel-Admin users on menu management. It covers menu customization, best practices for large menus (categorization, modularization, search), and dynamic menu generation based on user roles and permissions using Laravel's author

This article details implementing OAuth 2.0 authentication and authorization in Laravel. It covers using packages like league/oauth2-server or provider-specific solutions, emphasizing database setup, client registration, authorization server configu

This article guides Laravel developers in choosing the right version. It emphasizes the importance of selecting the latest Long Term Support (LTS) release for stability and security, while acknowledging that newer versions offer advanced features.

The article discusses creating and customizing reusable UI elements in Laravel using components, offering best practices for organization and suggesting enhancing packages.

The article discusses creating and using custom validation rules in Laravel, offering steps to define and implement them. It highlights benefits like reusability and specificity, and provides methods to extend Laravel's validation system.

The article discusses best practices for deploying Laravel in cloud-native environments, focusing on scalability, reliability, and security. Key issues include containerization, microservices, stateless design, and optimization strategies.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
