arthurydalgo / laravext-vue-starter-kit
The skeleton application for Laravel framework with Laravext.
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Vue
Type:project
Requires
- php: ^8.2
- arthurydalgo/laravext: ^1.1
- laravel/framework: ^12.0
- laravel/sanctum: ^4.0
- laravel/tinker: ^2.10.1
- tightenco/ziggy: ^2.4
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/pail: ^1.2.2
- laravel/pint: ^1.18
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- phpunit/phpunit: ^11.5.3
This package is not auto-updated.
Last update: 2025-03-24 17:59:49 UTC
README
Introduction
This is an starter kit of a Laravel 12 application with Vue that makes use of the Laravext package.
Instructions
I'm assuming you have PHP (8.4 or later), Composer and Node.js installed on your machine, and also that you have some kind of database running (like MySQL or SQLite), that you have created a .env
file based on the .env.example
file and set it up with your database credentials.
npm install
npm run build
composer install
php artisan migrate --seed
php artisan serve # or use Laravel Herd, or whatever you prefer
You should now be able to access the application at http://localhost:8000, or whatever URL you have set up for your local environment.