Tablename model Laravel
protected $table = 'DomainRelatedSettings';
Asif Patel
protected $table = 'DomainRelatedSettings';
protected $table = 'table_name';
public $table = "dpl_user";
protected $fillable = [ 'user_id', 'fname', 'lname', 'email', 'phone', 'msg'];
$item = new Item;
$table = $item->getTable();
print_r($table);
php artisan make:model Flight
protected $table = 'DomainRelatedSettings';