AI-Assisted Coding
Use Laravel Boost when you want AI coding agents to understand how Inertia Table applications are built. The Composer package ships a Boost skill with guidance for PHP table classes, Vue and React rendering, columns and filters, row and bulk actions, exports, saved views, and styling hooks.
Laravel Boost installs an MCP server, project guidelines, and optional agent skills into your application. It discovers the Inertia Table skill from the installed Composer package through Boost's third-party package skill convention.
Install Laravel Boost
Install Boost as a development dependency after installing inertiaui/table. Then select the agent integrations you use:
composer require laravel/boost --dev
php artisan boost:installApplications that already used Boost before adding Inertia Table should refresh their generated resources and ask Boost to scan installed packages again:
php artisan boost:update --discoverBoost writes the selected agent files and MCP configuration for supported tools such as Codex, Claude Code, Cursor, Gemini CLI, GitHub Copilot, and PhpStorm. See the Laravel Boost documentation for agent-specific setup.
What the Skill Covers
The Inertia Table skill gives agents concise package guidance for common development tasks:
- Defining PHP
Tableclasses with an Eloquent resource as the source of truth. - Picking the right column type and filter type, including sorting and search across relations.
- Wiring row actions, bulk actions, and exports.
- Rendering the serialized table with the Vue or React
Tablecomponent and its slots. - Styling generated tables with theme tokens and stable CSS hooks, see styling.
Boost is optional and is not required at runtime. Your app works without it. The skill only improves the context available to your coding agent.