Claude Laravel provides opinionated Laravel skills and commands for Claude Code. It enables developers to automate Laravel tasks, benefiting operations teams by streamlining workflows. It connects to Laravel applications and integrates with Claude agents.
git clone https://github.com/leeovery/claude-laravel.gitClaude Laravel provides opinionated Laravel skills and commands for Claude Code. It enables developers to automate Laravel tasks, benefiting operations teams by streamlining workflows. It connects to Laravel applications and integrates with Claude agents.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/leeovery/claude-laravelCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
I'm working on a Laravel project for [COMPANY], a [INDUSTRY] company. I need to [SPECIFIC TASK, e.g., 'generate a migration for a new users table with specific fields']. Can you help me with this using Claude Laravel?
# Laravel Migration for Users Table
Here's a migration file for a users table with the requested fields:
```php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
$table->string('phone')->nullable();
$table->string('address')->nullable();
$table->string('city')->nullable();
$table->string('state')->nullable();
$table->string('zip_code')->nullable();
$table->string('country')->nullable();
});
}
public function down()
{
Schema::dropIfExists('users');
}
}
```
### Next Steps
- Run the migration using `php artisan migrate`
- Consider creating a corresponding User model if needed
- Implement any additional logic or validations in the modelAI assistant built for thoughtful, nuanced conversation
IronCalc is a spreadsheet engine and ecosystem
Service Management That Turns Chaos Into Control
Customer feedback management made simple
Enterprise workflow automation and service management platform
Automate your spreadsheet tasks with AI power