Laravel components that take care of one specific task
Laravel Actions is a package that introduces a new way of organizing the logic of Laravel applications by focusing on the actions your applications provide. Instead of creating multiple components like controllers, jobs, and listeners separately, Laravel Actions allows you to create PHP classes that handle specific tasks and run them in various contexts. By shifting the focus to "What does my application actually do?", Laravel Actions simplifies the development process.