Is there a command to safely delete a model in Laravel 5? To create a model we use
php artisan make:model modelname
And that will create a mode
No command, just do it manually and its safe
...database/migrations
folderphp artisan migrate
, log into your phpmyadmin or SQL(whichever the case is) and in your database, delete the table created by the migrationWorks for me, hope it helps!