Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/germdz/spa-vilt
Un SPA con Vue, Inertia, Laravel y Tailwind
https://github.com/germdz/spa-vilt
curso inertiajs laravel spa tailwindcss vuejs
Last synced: about 1 month ago
JSON representation
Un SPA con Vue, Inertia, Laravel y Tailwind
- Host: GitHub
- URL: https://github.com/germdz/spa-vilt
- Owner: gerMdz
- License: mit
- Created: 2023-01-26T14:10:15.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-07T14:46:29.000Z (8 months ago)
- Last Synced: 2024-05-07T15:54:47.864Z (8 months ago)
- Topics: curso, inertiajs, laravel, spa, tailwindcss, vuejs
- Language: JavaScript
- Homepage:
- Size: 791 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: License
Awesome Lists containing this project
README
# SPA Portafolio
## About SPA Portafolio
Es lo aprendido en un curso que describo en Learning Laravel.
Es para integrar distintos componentes de front y back## Documentación usada
[Tailwindcss](https://tailwindcss.com/docs/installation)
[Laravel](https://laravel.com/docs/8.x/installation)
[Inertia](https://inertiajs.com/)
[Vue](https://vuejs.org/guide/introduction.html)
[jetstream](https://jetstream.laravel.com/3.x/introduction.html)
## Comandos
### Instalar componentes
#### Laravel
```
composer create-project laravel/laravel carpeta-de-destino
```#### Jetstream
```bash
composer require laravel/jetstream
```
#### Crear model (-m migración -f factory -c controller)
```
php artisan make:model Skill -mfc
php artisan make:model Project -mfc
```#### Creando la base de datos
```
php artisan migrate:fresh
```
#### Recreando la base de datos, borrando datos y aplicando seeders
```
php artisan migrate:fresh --seed
```
#### Ejecutando solo los seeders en la base de datos
```
php artisan db:seed
```#### Instalando Jetstream
##### Elegimos inerti
```bash
php artisan jetstream:install inertia
```#### Comprobando los datos cargados en la base de datos
```
php artisan tinker
App\Models\Skill::all();
App\Models\Project::all();
```## Learning Laravel
Esto es parte de los cursos que imparte en Udemy [JuanDMGon](https://www.udemy.com/user/juandavidmezagonzlez/)
En este caso lo sigo en Laravel, otros los he seguido en Symfony aunque él lo enseñaba en Laravel.
## License
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
Este proyecto también está licenciado bajo la [MIT license](https://opensource.org/licenses/MIT).
#### Next step
[Cap 28](https://www.udemy.com/course/usa-laravel-y-crea-un-spa-con-vue-intertia-y-tailwind-css/learn/lecture/31415754#questions)