123456789101112131415161718192021222324 |
- <?php namespace System\DB\Eloquent;
- class Meta {
-
- public static function table($class)
- {
-
-
-
- if (property_exists($class, 'table'))
- {
- return $class::$table;
- }
- return \System\Str::lower(\System\Inflector::plural($class));
- }
- }
|