backend-laravel
Installation
SKILL.md
Backend Laravel Conventions
This skill provides specific conventions for Laravel backend development.
When to Use
- Use this skill when working on Laravel projects
- Use this skill when creating new controllers, services, or models
- This skill builds upon
project-standardsskill
Instructions
1. Architecture & Design Pattern
Service Layer
Complex Business Logic MUST be separated into Service Classes.
- Path:
app/Services/{Name}Service.php
<?php