Illuminate\Database\Eloquent\Model::setTable PHP Method

setTable() public method

Set the table associated with the model.
public setTable ( string $table )
$table string
    public function setTable($table)
    {
        $this->table = $table;
        return $this;
    }
Model