martinbean/eloquent-singular-table-names
Makes Eloquent models use singular (rather than plural) table names by default.
4,804
| Install | |
|---|---|
composer require martinbean/eloquent-singular-table-names |
|
| Latest Version: | v1.0.2 |
| License: | MIT |
| Last Updated: | Aug 26, 2015 |
| Links: | GitHub · Packagist |
Maintainer: martinbean
Eloquent singular table names
Makes Eloquent models use singular (rather than plural) table names by default.
Usage
Simple apply the trait to your Eloquent model:
namespace App;
use Illuminate\Database\Eloquent\Model;
use MartinBean\Database\Eloquent\SingularTableName;
class User extends Model
{
use SingularTableName;
}
The default table name will be user now, rather than users.
If you wish to use singular table names for all of your models, then you can create an abstract class that implements the trait, and have all of your models extend that class:
namespace App;
use Illuminate\Database\Eloquent\Model;
use MartinBean\Database\Eloquent\SingularTableName;
abstract class SingularModel extends Model
{
use SingularTableName;
}
namespace App;
class User extends SingularModel
{
// No need to implement trait
}
Related Packages
erirk/paypalpayment
laravel-paypalpayment is simple package help you process direct credit card paym...
0
doctrine/dbal
Powerful PHP database abstraction layer (DBAL) with many features for database s...
628,058,007
9,707