| Install | |
|---|---|
composer require webmintydotcom/laravel-quickstart-inertia |
|
| Latest Version: | 1.0.1 |
| PHP: | ^8.4 |
A starter kit for Laravel applications with React, Inertia.js, Shadcn UI, and Tailwind CSS v4. Designed to help you quickly set up a new full-stack Laravel project with a modern development environment.
laravel new my-app --pest --npm --using=webmintydotcom/laravel-quickstart-inertia
| Layer | Technology |
|---|---|
| Backend | Laravel 12, PHP 8.4 |
| Frontend | React 19, TypeScript |
| Routing | Inertia.js |
| UI Components | Shadcn UI |
| Styling | Tailwind CSS v4 |
| Build | Vite 7 |
| Testing | Pest, Larastan |
Version 12 of Laravel is used in this starter kit.
Inertia.js connects the Laravel backend to the React frontend without needing an API. Pages are React components rendered via Inertia::render() in your routes and controllers.
Ziggy provides a route() helper in JavaScript, so you can use Laravel named routes in your React components.
Spatie Laravel Data is included to help you create data transfer objects (DTOs) in a simple and elegant way.
React 19 with TypeScript. Entry point is resources/js/app.tsx with SSR support via resources/js/ssr.tsx.
Pre-configured with components.json pointing to resources/js/components/ui/. Includes all required dependencies (Radix UI, class-variance-authority, clsx, tailwind-merge, Lucide icons).
Tailwind CSS v4 with the Vite plugin. Configured with Shadcn's full oklch color palette and dark mode support.
Spatie Laravel Ray is included to help you debug your Laravel applications with ease.
Pest is included to help you write expressive and elegant tests for your Laravel applications.
Larastan is included to help you catch type errors in your Laravel applications using PHPStan.
Pint is included to help you format your Laravel code according to the Webminty coding standard.
Rector is included to help you refactor and upgrade your Laravel codebase automatically.
Prettier is included to help you format your code consistently across your project.
Changes to the default Laravel files are included in this starter kit to improve performance and developer experience.
Model::preventLazyLoading();
if ($this->app->isProduction()) {
Model::handleLazyLoadingViolationUsing(function ($model, $relation) {
$class = get_class($model);
info("Attempted to lazy load [{$relation}] on model [{$class}].");
});
DB::prohibitDestructiveCommands();
} else {
Model::preventAccessingMissingAttributes();
Model::preventSilentlyDiscardingAttributes();
Model::shouldBeStrict();
}
Vite::usePrefetchStrategy('aggressive');
Thank you Webminty Team