akaunting/app/Traits/Owners.php
2021-06-17 10:59:07 +03:00

19 lines
303 B
PHP

<?php
namespace App\Traits;
trait Owners
{
public function isOwnable()
{
$ownable = $this->ownable ?: true;
return ($ownable === true) && in_array('created_by', $this->getFillable());
}
public function isNotOwnable()
{
return !$this->isOwnable();
}
}