mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
29 lines
650 B
PHP
29 lines
650 B
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Utils\Traits;
|
|
|
|
/**
|
|
* Class ChecksEntityStatus.
|
|
*/
|
|
trait ChecksEntityStatus
|
|
{
|
|
public function entityIsDeleted($entity)
|
|
{
|
|
return $entity->is_deleted;
|
|
}
|
|
|
|
public function disallowUpdate()
|
|
{
|
|
return response()->json(['message'=>'Record is deleted and cannot be edited. Restore the record to enable editing'], 400);
|
|
}
|
|
}
|