| 1234567891011121314151617181920212223242526 | 
							- <?php namespace System\DB\Eloquent;
 
- class Factory {
 
- 	/**
 
- 	 * Factory for creating new model instances.
 
- 	 *
 
- 	 * @param  string  $class
 
- 	 * @return object
 
- 	 */
 
- 	public static function make($class)
 
- 	{
 
- 		// -----------------------------------------------------
 
- 		// Create a new model instance.
 
- 		// -----------------------------------------------------
 
- 		$model = new $class;
 
- 		
 
- 		// -----------------------------------------------------
 
- 		// Set the active query instance on the model.
 
- 		// -----------------------------------------------------
 
- 		$model->query = \System\DB\Query::table(Meta::table($class));
 
- 		return $model;
 
- 	}
 
- }
 
 
  |