laravel-testing
Installation
SKILL.md
Laravel Testing
PHPUnit + Dusk testing patterns for Laravel 12+.
Feature Tests
<?php
namespace Tests\Feature;
use App\Models\Order;
use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class OrderTest extends TestCase
{
use RefreshDatabase;