Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laraquasar/laraquasar
Laravel + Quasar Framework in one place laravel 10.x support
https://github.com/laraquasar/laraquasar
frontend inertiajs jsframework laravel laravel-template laravel-ui laravel10 quasar-framework vite vue vuejs
Last synced: 28 days ago
JSON representation
Laravel + Quasar Framework in one place laravel 10.x support
- Host: GitHub
- URL: https://github.com/laraquasar/laraquasar
- Owner: laraquasar
- License: apache-2.0
- Created: 2023-02-16T05:26:21.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-08-09T06:31:44.000Z (3 months ago)
- Last Synced: 2024-09-28T20:02:07.895Z (about 1 month ago)
- Topics: frontend, inertiajs, jsframework, laravel, laravel-template, laravel-ui, laravel10, quasar-framework, vite, vue, vuejs
- Language: PHP
- Homepage: https://packagist.org/packages/laraquasar/laraquasar
- Size: 245 KB
- Stars: 45
- Watchers: 1
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- quasar-awesome - github
README
# LaraQuasar
A Laravel + Quasar Vue Framework as main frontend, using inertia.js and vite as the main foundation
Laraquasar is a Laravel template that use Quasar Framework and utilities for your Laravel project. With Laraquasar, you can quickly and easily integrate Quasar components into your Laravel.
## Who is template for?
Starting from my favorite using laravel as a backend and also quasar as the basic component of my application. I really do not like to waste time by making 2 backend and frontend projects. if you can combine it to the two why not
I am happy to hear the philosophy of being made inertia.js
https://inertiajs.com/who-is-it-forAnd I'm glad I could make this 😁
## Installation
```bash
composer create-project laraquasar/laraquasar
```Install all node_modules packages using the package manager that you like, here I recommend using PNPM
```bash
cd laraquasar
pnpm install
```## Usage
### Dev
Open 2 terminals, one to run a laravel and one to run Vite
``` bash
php artisan serve
```
```bash
pnpm dev
```
### Production
build all frontend using
```bash
pnpm build
```