Skip to content

Instantly share code, notes, and snippets.

@Daniel-Monroy
Last active January 25, 2021 01:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Daniel-Monroy/ccb57df52fe28418d6ffdfffe0ee6194 to your computer and use it in GitHub Desktop.
Save Daniel-Monroy/ccb57df52fe28418d6ffdfffe0ee6194 to your computer and use it in GitHub Desktop.
laravel new calendar
php artisan migrate
composer require nascent-africa/jetstrap --dev
In AppServiceProvider:
JetstrapFacade::useAdminLte3();
Paginator::useBootstrap();
php artisan jetstrap:swap inertia --teams
npm install && npm run dev
npm run watch
php artisan make:model Calendar -cmsf (Controller, migration, seeder, factory)
npm install vuetify - Vuetify
add files
- /resources/sass/dashboard/_reset.scss
- /resources/js/Plugins/vuetify.js
1. Agregar un Card
2. Agregar el component VCalendar
3. Verificar los metodos correspondientes
4. Agregar un el boton para mostrar el modal de agregar
5. Crear el modal Agregar evento
6. Crear el formulario Agregar evento
7. Preparar el metodo para agreagar el evento
8. Agregar datos a la migración Calendar
9. Configurar el Modelo
10. Configurar el Controlador
11. Agregar el Evento
12. Agregar CSS del componente
13. Mostrar Modal Evento
14. Construir Formulario para editar el evento
14. Preparar el controlador
15. Editar el evento
16. Eliminar el evento
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment