mistery23 / eloquent-flusher
laravel flush relations
Installs: 159
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- php: ^7.2
- illuminate/database: ~5.8.0|^6.0
README
Deffer push entity
Install
composer require mistery23/eloquent-flusher
Using
use Mistery23\Flusher;
class Role extends Model
{
use Flusher;
....
/**
* For BelongsToMany.
* Detach permission from a role.
*
* @param string $permissionId
*/
public function detachPermission($permissionId): void
{
$this->detachItem('permissions', $permissionId);
}
.....
/**
* For HasMany.
* Detach role translations from a role.
*
* @param string $locale
*
* @return void
*/
public function detachTranslation(string $locale): void
{
$translation = $this->translations->where('locale', $locale)->first();
$this->detachItem('translations', $translation);
}
}
And flush in repository
/**
* Update role
*
* @param Role $role
*
* @return void
*
* @throws \RuntimeException
*/
public function update(Role $role): void
{
if (false === $role->flush()) {
throw new \RuntimeException('Update error.');
}
}
License
This package is free software distributed under the terms of the MIT license. Enjoy!