Eloquent::from PHP Method

from() public static method

Set the table which the query is targeting.
public static from ( string $table )
$table string
        public static function from($table)
        {
            return \Illuminate\Database\Query\Builder::from($table);
        }
Eloquent