Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计提醒

laravelLaravel 搜索

Agent Skill

laravel 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

661

周安装

27

GitHub Stars

31

下载量

214
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:laravel(Laravel 搜索)
来源仓库:https://github.com/rawveg/skillsforge-marketplace
仓库路径:skills/laravel
安装命令:
npx skills add https://github.com/rawveg/skillsforge-marketplace --skill laravel
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/rawveg/skillsforge-marketplace --skill laravel

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 安装方式:通过 GitHub 仓库安装,命令为 npx skills add https://github.com/rawveg/skillsforge-marketplace --skill laravel。
  • 适用宿主:Codex、Claude、Cursor、Gemini CLI。

SKILL.md

Laravel Skill

Comprehensive assistance with Laravel 12.x development, including routing, Eloquent ORM, migrations, authentication, API development, and modern PHP patterns.

When to Use This Skill

This skill should be triggered when:

  • Building Laravel applications or APIs
  • Working with Eloquent models, relationships, and queries
  • Setting up authentication, authorization, or API tokens
  • Creating database migrations, seeders, or factories
  • Implementing middleware, service providers, or events
  • Using Laravel's built-in features (queues, cache, validation, etc.)
  • Troubleshooting Laravel errors or performance issues
  • Following Laravel best practices and conventions
  • Implementing RESTful APIs with Laravel Sanctum or Passport
  • Working with Laravel Mix, Vite, or frontend assets

Quick Reference

Basic Routing

// Basic routes
Route::get('/users', [UserController::class, 'index']);
Route::post('/users', [UserController::class, 'store']);

// Route parameters
Route::get('/users/{id}', function ($id) {
    return User::find($id);
});

// Named routes
Route::get('/profile', ProfileController::class)->name('profile');

// Route groups with middleware
Route::middleware(['auth'])->group(function () {
    Route::get('/dashboard', [DashboardController::class, 'index']);
    Route::resource('posts', PostController::class);
});

Eloquent Model Basics

// Define a model with relationships
namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\BelongsTo;

class Post extends Model
{
    protected $fillable = ['title', 'content', 'user_id'];

    protected $casts = [
        'published_at' => 'datetime',
    ];

    public function user(): BelongsTo
    {
        return $this->belongsTo(User::class);
    }

    public function comments(): HasMany
    {
        return $this->hasMany(Comment::class);
    }
}

Database Migrations

// Create a migration
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
    public function up(): void
    {
        Schema::create('posts', function (Blueprint $table) {
            $table->id();
            $table->foreignId('user_id')->constrained()->cascadeOnDelete();
            $table->string('title');
            $table->text('content');
            $table->timestamp('published_at')->nullable();
            $table->timestamps();

            $table->index(['user_id', 'published_at']);
        });
    }

    public function down(): void
    {
        Schema::dropIfExists('posts');
    }
};

Form Validation

// Controller validation
public function store(Request $request)
{
    $validated = $request->validate([
        'title' => 'required|max:255',
        'content' => 'required',
        'email' => 'required|email|unique:users',
        'tags' => 'array|min:1',
        'tags.*' => 'string|max:50',
    ]);

    return Post::create($validated);
}

// Form Request validation
namespace App\Http\Requests;

use Illuminate\Foundation\Http\FormRequest;

class StorePostRequest extends FormRequest
{
    public function rules(): array
    {
        return [
            'title' => 'required|max:255',
            'content' => 'required|min:100',
        ];
    }
}

Eloquent Query Builder

// Common query patterns
// Eager loading to avoid N+1 queries
$posts = Post::with(['user', 'comments'])
    ->where('published_at', '<=', now())
    ->orderBy('published_at', 'desc')
    ->paginate(15);

// Conditional queries
$query = Post::query();

if ($request->has('search')) {
    $query->where('title', 'like', "%{$request->search}%");
}

if ($request->has('author')) {
    $query->whereHas('user', function ($q) use ($request) {
        $q->where('name', $request->author);
    });
}

$posts = $query->get();

API Resource Controllers

namespace App\Http\Controllers\Api;

use App\Models\Post;
use App\Http\Resources\PostResource;
use Illuminate\Http\Request;

class PostController extends Controller
{
    public function index()
    {
        return PostResource::collection(
            Post::with('user')->latest()->paginate()
        );
    }

    public function store(Request $request)
    {
        $post = Post::create($request->validated());

        return new PostResource($post);
    }

    public function show(Post $post)
    {
        return new PostResource($post->load('user', 'comments'));
    }

    public function update(Request $request, Post $post)
    {
        $post->update($request->validated());

        return new PostResource($post);
    }
}

API Resources (Transformers)

namespace App\Http\Resources;

use Illuminate\Http\Resources\Json\JsonResource;

class PostResource extends JsonResource
{
    public function toArray($request): array
    {
        return [
            'id' => $this->id,
            'title' => $this->title,
            'slug' => $this->slug,
            'excerpt' => $this->excerpt,
            'content' => $this->when($request->routeIs('posts.show'), $this->content),
            'author' => new UserResource($this->whenLoaded('user')),
            'comments_count' => $this->when($this->comments_count, $this->comments_count),
            'published_at' => $this->published_at?->toISOString(),
            'created_at' => $this->created_at->toISOString(),
        ];
    }
}

Authentication with Sanctum

// API token authentication setup
// In config/sanctum.php - configure stateful domains

// Issue tokens
use Laravel\Sanctum\HasApiTokens;

class User extends Authenticatable
{
    use HasApiTokens;
}

// Login endpoint
public function login(Request $request)
{
    $credentials = $request->validate([
        'email' => 'required|email',
        'password' => 'required',
    ]);

    if (!Auth::attempt($credentials)) {
        return response()->json(['message' => 'Invalid credentials'], 401);
    }

    $token = $request->user()->createToken('api-token')->plainTextToken;

    return response()->json(['token' => $token]);
}

// Protect routes
Route::middleware('auth:sanctum')->group(function () {
    Route::get('/user', fn(Request $r) => $r->user());
});

Jobs and Queues

// Create a job
namespace App\Jobs;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;

class ProcessVideo implements ShouldQueue
{
    use InteractsWithQueue, Queueable;

    public function __construct(
        public Video $video
    ) {}

    public function handle(): void
    {
        // Process the video
        $this->video->process();
    }
}

// Dispatch jobs
ProcessVideo::dispatch($video);
ProcessVideo::dispatch($video)->onQueue('videos')->delay(now()->addMinutes(5));

Service Container and Dependency Injection

// Bind services in AppServiceProvider
use App\Services\PaymentService;

public function register(): void
{
    $this->app->singleton(PaymentService::class, function ($app) {
        return new PaymentService(
            config('services.stripe.secret')
        );
    });
}

// Use dependency injection in controllers
public function __construct(
    protected PaymentService $payment
) {}

public function charge(Request $request)
{
    return $this->payment->charge(
        $request->user(),
        $request->amount
    );
}

Reference Files

This skill includes comprehensive documentation in references/:

  • other.md - Laravel 12.x installation guide and core documentation

Use the reference files for detailed information about:

  • Installation and configuration
  • Framework architecture and concepts
  • Advanced features and packages
  • Deployment and optimization

Key Concepts

MVC Architecture

Laravel follows the Model-View-Controller pattern:

  • Models: Eloquent ORM classes representing database tables
  • Views: Blade templates for rendering HTML
  • Controllers: Handle HTTP requests and return responses

Eloquent ORM

Laravel's powerful database abstraction layer:

  • Active Record pattern: Each model instance represents a database row
  • Relationships: belongsTo, hasMany, belongsToMany, morphMany, etc.
  • Query Builder: Fluent interface for building SQL queries
  • Eager Loading: Prevent N+1 query problems with with()

Routing

Define application endpoints:

  • Route methods: get, post, put, patch, delete
  • Route parameters: Required {id} and optional {id?}
  • Route groups: Share middleware, prefixes, namespaces
  • Resource routes: Auto-generate RESTful routes

Middleware

Filter HTTP requests:

  • Built-in: auth, throttle, verified, signed
  • Custom: Create your own request/response filters
  • Global: Apply to all routes
  • Route-specific: Apply to specific routes or groups

Service Container

Laravel's dependency injection container:

  • Automatic resolution: Type-hint dependencies in constructors
  • Binding: Register class implementations
  • Singletons: Share single instance across requests

Artisan Commands

Laravel's CLI tool:

php artisan make:model Post -mcr  # Create model, migration, controller, resource
php artisan migrate               # Run migrations
php artisan db:seed              # Seed database
php artisan queue:work           # Process queue jobs
php artisan optimize:clear       # Clear all caches

Working with This Skill

For Beginners

Start with:

  1. Installation: Set up Laravel using Composer
  2. Routing: Learn basic route definitions in routes/web.php
  3. Controllers: Create controllers with php artisan make:controller
  4. Models: Understand Eloquent basics and relationships
  5. Migrations: Define database schema with migrations
  6. Blade Templates: Create views with Laravel's templating engine

For Intermediate Users

Focus on:

  • Form Requests: Validation and authorization in dedicated classes
  • API Resources: Transform models for JSON responses
  • Authentication: Implement with Laravel Breeze or Sanctum
  • Relationships: Master eager loading and complex relationships
  • Queues: Offload time-consuming tasks to background jobs
  • Events & Listeners: Decouple application logic

For Advanced Users

Explore:

  • Service Providers: Register application services
  • Custom Middleware: Create reusable request filters
  • Package Development: Build reusable Laravel packages
  • Testing: Write feature and unit tests with PHPUnit
  • Performance: Optimize queries, caching, and response times
  • Deployment: CI/CD pipelines and production optimization

Navigation Tips

  • Check Quick Reference for common code patterns
  • Reference the official docs at https://laravel.com/docs/12.x
  • Use php artisan route:list to view all registered routes
  • Use php artisan tinker for interactive debugging
  • Enable query logging to debug database performance

Common Patterns

Repository Pattern

interface PostRepositoryInterface
{
    public function all();
    public function find(int $id);
    public function create(array $data);
}

class PostRepository implements PostRepositoryInterface
{
    public function all()
    {
        return Post::with('user')->latest()->get();
    }

    public function find(int $id)
    {
        return Post::with('user', 'comments')->findOrFail($id);
    }
}

Action Classes (Single Responsibility)

class CreatePost
{
    public function execute(array $data): Post
    {
        return DB::transaction(function () use ($data) {
            $post = Post::create($data);
            $post->tags()->attach($data['tag_ids']);
            event(new PostCreated($post));
            return $post;
        });
    }
}

Query Scopes

class Post extends Model
{
    public function scopePublished($query)
    {
        return $query->where('published_at', '<=', now());
    }

    public function scopeByAuthor($query, User $user)
    {
        return $query->where('user_id', $user->id);
    }
}

// Usage
Post::published()->byAuthor($user)->get();

Resources

Official Documentation

Community

Tools

  • Laravel Telescope: Debugging and monitoring
  • Laravel Horizon: Queue monitoring
  • Laravel Debugbar: Development debugging
  • Laravel IDE Helper: IDE autocompletion

Best Practices

  1. Use Form Requests: Separate validation logic from controllers
  2. Eager Load Relationships: Avoid N+1 query problems
  3. Use Resource Controllers: Follow RESTful conventions
  4. Type Hints: Leverage PHP type declarations for better IDE support
  5. Database Transactions: Wrap related database operations
  6. Queue Jobs: Offload slow operations to background workers
  7. Cache Queries: Cache expensive database queries
  8. API Resources: Transform data consistently for APIs
  9. Events: Decouple application logic with events and listeners
  10. Tests: Write tests for critical application logic

Notes

  • Laravel 12.x requires PHP 8.2 or higher
  • Uses Composer for dependency management
  • Includes Vite for asset compilation (replaces Laravel Mix)
  • Supports multiple database systems (MySQL, PostgreSQL, SQLite, SQL Server)
  • Built-in support for queues, cache, sessions, and file storage
  • Excellent ecosystem with first-party packages (Sanctum, Horizon, Telescope, etc.)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

32.27%
按下载量换算69

Antigravity

23.33%
按下载量换算50

windsurf

16.96%
按下载量换算36

Codex

13.11%
按下载量换算28

OpenCode

7.27%
按下载量换算16

Gemini CLI

3.36%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills