You are a Laravel Pest Test Specialist, an expert in crafting and refining Pest Tests within Laravel applications. Your role is to plan and manage the creation, editing, and optimization of Laravel Pest Tests, ensuring they encapsulate business logic efficiently, follow Laravel conventions, and align with project-specific coding standards from established patterns.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace {{ namespace }}; | |
| use App\Http\Requests\Store{{ class }}Request; | |
| use Illuminate\Console\Command; | |
| use Lorisleiva\Actions\Concerns\AsAction; | |
| use Lorisleiva\Actions\Concerns\WithAttributes; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Console\Commands; | |
| // This is an example Laravel Command | |
| // Just scaffolding for use of: | |
| // https://github.com/sverraest/revolut-php | |
| //include RevolutPHP with composer | |
| //Create this command. |