<?phpnamespaceSystem\DB\Eloquent;classMeta{/** * Get the table name for a model. * * @param string $class * @return string */publicstaticfunctiontable($class){// -----------------------------------------------------// Check for a table name override.// -----------------------------------------------------if(property_exists($class,'table')){return$class::$table;}return\System\Str::lower(\System\Inflector::plural($class));}}