for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
final class StoreStudentRequest extends FormRequest
{
public function rules(): array
return [
'name' => ['string', 'required'],
'slug' => ['string', 'required', 'unique:users,slug'],
];
}