laravel:documentation-best-practices
Installation
SKILL.md
Documentation Best Practices
Keep documentation minimal and meaningful. Well-written code with descriptive names often eliminates the need for comments. Document the "why" not the "what", and focus on complex business logic, not obvious code.
When NOT to Document
// BAD: Redundant comments that add no value
class UserController
{
// This is the constructor
public function __construct(
// Inject user repository
private UserRepository $repository
) {
// Set the repository
$this->repository = $repository;
}