Shift with red gradient lettering
Loading navigation...

Model Table Name

Laravel

Remove unnecessary $table properties defined in models which already follow Laravel's naming convention.

Before

public User extends Model
{
protected $table = 'users';
 
// ...
}

After

public User extends Model
{
// ...
}

← Back to the Workbench Tasks