1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Models/OwnedByClientTrait.php
Hillel Coren eaf73077b1 Bug fixes
2015-11-16 21:21:48 +02:00

13 lines
215 B
PHP

<?php namespace App\Models;
trait OwnedByClientTrait
{
public function isClientTrashed()
{
if (!$this->client) {
return false;
}
return $this->client->trashed();
}
}