0% found this document useful (0 votes)
18 views3 pages

Script Laravel

The document outlines a series of commands for setting up a Laravel application, including creating migrations for various tables, generating models and controllers, and performing database operations such as migrations and seeding. It also includes commands for clearing cache and views, as well as updating dependencies. The commands are intended for backend development and database management in a Laravel environment.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views3 pages

Script Laravel

The document outlines a series of commands for setting up a Laravel application, including creating migrations for various tables, generating models and controllers, and performing database operations such as migrations and seeding. It also includes commands for clearing cache and views, as well as updating dependencies. The commands are intended for backend development and database management in a Laravel environment.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

php artisan make:migration create_medico_table

php artisan make:migration create_paciente_table

php artisan make:migration create_persona_table

php artisan make:migration create_consultorio_table

php artisan make:migration create_horarioatencion_table

php artisan make:migration create_agenda_table

php artisan make:migration create_horarioatenciondetalle_table

php artisan make:migration create_usuarios_table

php artisan make:migration create_ sessions_table

php artisan migrate

php artisan make:model Medico

php artisan make:model Paciente

php artisan make:model Persona

php artisan make:model Consultorio

php artisan make:model Horarioatencion

php artisan make:model Agenda

php artisan make:model agendadetalle

php artisan make:model Horarioatenciondetalle

php artisan make:model Usuario

php artisan make:controller API/ConsultorioController

php artisan make:controller API/MedicoController

php artisan make:controller API/PacienteController


php artisan make:controller API/PersonaController

php artisan make:controller API/HorarioatencionController

php artisan make:controller API/HorarioatenciondetalleController

php artisan make:controller API/ConsultorioController

php artisan make:controller API/UsuarioController

php artisan make:controller API/PersonController

php artisan make:controller API/AgendaController

composer update

cd backend

php artisan view:clear

php artisan cache:clear

php artisan migrate:install

php artisan serve

php artisan make:factory [Link]

php artisan make:factory [Link]

php artisan make:factory [Link]

php artisan make:factory [Link]

php artisan make:factory [Link]

php artisan db:seed

php artisan route:clear

php artisan route:list

php artisan route:list

php artisan route:list


php artisan migrate:fresh --seed

You might also like