evo-mark / inertia-11-template
The skeleton application for the Laravel framework.
Installs: 97
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Type:project
pkg:composer/evo-mark/inertia-11-template
Requires
- php: ^8.2
 - adminui/inertia-routes: ^3.0
 - evo-mark/inertia-i18n: ^1.0
 - inertiajs/inertia-laravel: ^1.0
 - laravel/framework: ^11.0
 - laravel/tinker: ^2.9
 - wikimedia/composer-merge-plugin: ^2.1
 
Requires (Dev)
- fakerphp/faker: ^1.23
 - laravel/pint: ^1.13
 - mockery/mockery: ^1.6
 - nunomaduro/collision: ^8.0
 - pestphp/pest: ^2.34
 - pestphp/pest-plugin-laravel: ^2.3
 - spatie/laravel-ignition: ^2.4
 
This package is auto-updated.
Last update: 2025-10-24 16:36:37 UTC
README
Laravel 11 Application Template
Introduction
This template installs a barebones Laravel 11 installation with the following features:
General
- InertiaJS / Vue3 framework
 
Backend
- Basic auth controllers for login, forgot password, verify email and reset password
 - Command for 
make:servicewhich creates and binds a service with a backing facade - Prebuilt services for flash messages, icon paths and page metadata included
 - Error handling with frontend page for Inertia errors
 
Frontend
- Tailwind and sensible presets
 - InertiaRoutes plugin
 - InertiaI18n plugin for using your localisation strings inside Vue
 - Vue3AutoViteComponents plugin which automatically imports components from 
components/syncandcomponents/asyncdirectories. - Global Vue component for 
SvgIconwhich registers vue3-icon - UnpluginAutoImports will auto-import from 
vue,@inertiajs/vue3,vue-i18n,inertiaRoutesand bothcomposablesandhelpersdirectories. - Simple Header, Footer and DefaultLayout application structure.
 
Development
- Laravel pint configured for use via 
composer pint. - ESLint and Prettier for code-presentation enforcement
 - Merge support for 
composer.local.jsonfile 
Installation
composer create-project -s dev evo-mark/inertia-11-template example-app
Then inside your created application folder:
- Setup database and 
.envfile. composer updatepnpm installnpm run dev