sfneal/models

Eloquent Model wrapper with extended functionality

3.0.3 2024-04-16 02:11 UTC

README

Packagist PHP support Latest Version on Packagist Build Status Quality Score Total Downloads

Eloquent Model wrapper with extended functionality.

Installation

You can install the package via composer:

composer require sfneal/models

Usage

Models

AbstractModel, AbstractPivot, & AbstractAuthenticatable can be used as parent classes the same way Eloquent's Model, Pivot & Authenticatable can be used. AbstractModel uses Sfneal\Builders\QueryBuilder as the default Eloquent Query Builder (see sfneal/builders.

class YourModel extends AbstractModel
{
    protected $table = 'your_model';
    protected $primaryKey = 'your_model_id';
    
    protected $fillable = [
        'your_model_id',
        //
    ];
} 

Models that extend the AbstractModel class will have access to a variety of public access to a variety of methods that extends many of Models existing functionality's.

  • 'Newness' - methods to detetmine if a Model is new (useful for apps with CMS) or how new a model is
  • 'Changed' - methods to check if a Model was recently created, updated, deleted or unchanged
// Create a new Model record
$model = YourModel::query()->create($data);

// returns true
$model->wasCreated();

// Update the Model
$model->update([
	'some_attribute' => 'blue'
]);	

// returns false
$model->wasCreated();

// returns true
$model->wasUpdated();

Builders

Add the custom QueryBuilder to any Eloquent model by overwriting the built-in newEloquentBuilder() & query() methods.

use Illuminate\Database\Eloquent\Builder;
use Sfneal\Builders\QueryBuilder;

class ExampleModel extends Model
{
    /**
     * Query Builder.
     *
     * @param $query
     * @return QueryBuilder
     */
    public function newEloquentBuilder($query)
    {
        return new QueryBuilder($query);
    }
    
    /**
     * Query Builder method for improved type hinting.
     *
     * @return QueryBuilder|Builder
     */
    public static function query()
    {
        return parent::query();
    }
}

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email stephen.neal14@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

PHP Package Boilerplate

This package was generated using the PHP Package Boilerplate.