48 lines
1.3 KiB
Markdown
48 lines
1.3 KiB
Markdown
# LaraQuasar
|
|
|
|
<p align="center">
|
|
<img src="https://github.com/mohamad-supangat/laraquasar/assets/48933993/12f8c831-56c0-42f2-825c-1a23e72e1b6e" alt="Welcome Screen" width="500" />
|
|
</p>
|
|
|
|
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-for
|
|
|
|
And 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
|
|
```
|
|
|
|
|