Answers for "how to change table name of model laravel"

PHP
4

laravel model tablename

protected $table = 'DomainRelatedSettings';
Posted by: Guest on January-07-2021
0

how to rename a table element in laravel

Schema::table('users', function (Blueprint $table) {    $table->renameColumn('from', 'to');});
Posted by: Guest on December-05-2020

Code answers related to "how to change table name of model laravel"

Browse Popular Code Answers by Language