I can not find the model generated by the artisan

0

I used the command php artisan make:model Exemplo and could not find where it saved this generated model so I could change it. I looked at the app / html folder and found nothing.

My db is ready, so I do not need to use migrate, but I need the template to use the query builder as I understand it.

    
asked by anonymous 13.10.2017 / 16:25

1 answer

2

Laravel by default saves the models created through Artisan in the app/ directory, probably it's there, it would not make sense even to be in the directory you're looking for, since a Model has no relation to files HTML .

    
13.10.2017 / 16:43