laravel

Develop and debug Laravel 12.x applications with routing, ORM, and migrations.

Updated Apr 16, 2026
One-click install
npx skills add https://github.com/mozilor-technologies/mozilor-skills --skill laravel-mozilor-technologies
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: laravel
Source: https://github.com/mozilor-technologies/mozilor-skills/tree/main/skills/backend/language-specific/php/laravel
Command: npx skills add https://github.com/mozilor-technologies/mozilor-skills --skill laravel-mozilor-technologies

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Developers need to efficiently build, maintain, and troubleshoot Laravel applications, streamlining web development workflows.

Core Features & Use Cases

  • Application Development: Create RESTful APIs and web interfaces with Laravel's routing, controllers, and views.
  • Database Management: Use migrations, seeders, and Eloquent ORM for database schema and data handling.
  • Authentication & Security: Implement user login, authorization, and API token management with Sanctum or Passport.
  • Error Troubleshooting: Diagnose and fix errors or performance bottlenecks in Laravel projects.
  • Use Case: Build a comprehensive blog platform with user registration, post management, and real-time notifications.

Quick Start

Create a new Laravel project, set up database connections, and define routes for resource controllers to start building your app.

Frequently Asked Questions about laravel

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up Laravel routing and controllers for a new web application?

Laravel routing and controllers are set up by defining routes that map to resource controllers, handling web requests and building RESTful APIs. This structure streamlines web application development workflows.

What is the best way to manage database migrations and schemas in Laravel?

The best way to manage database schemas in Laravel is using migrations, seeders, and Eloquent ORM. These tools handle database schema creation, data seeding, and object-relational mapping for robust data management.

How does Laravel handle API authentication and token management?

Laravel handles API authentication and token management using Sanctum or Passport. These first-party packages provide secure user login, authorization, and API token generation for protecting application endpoints.

Can I use Laravel for queue management and background processing?

Yes, Laravel supports queue management for background processing. This feature handles the entire Laravel workflow, allowing deferred execution of time-consuming tasks like sending real-time notifications to improve application performance.

Does Laravel 12.x require a specific PHP version to run?

Laravel 12.x requires PHP 8.2 or higher to run effectively. Ensuring compatibility with PHP 8.2+ guarantees proper execution of framework features, first-party packages, and database integrations.

Why is my Laravel application experiencing performance bottlenecks?

Laravel performance bottlenecks often stem from inefficient database queries or misconfigured queue management. Diagnosing and fixing these errors involves analyzing Eloquent ORM usage and optimizing application workflows.