2020-06-22 00:34:02 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-06-22 00:34:02 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-06-22 00:34:02 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-06-22 00:34:02 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Repositories;
|
|
|
|
|
2021-06-03 00:02:30 +02:00
|
|
|
use App\Models\Design;
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
|
2020-06-22 00:34:02 +02:00
|
|
|
/**
|
2020-11-03 14:27:41 +01:00
|
|
|
* Class for DesignRepository .
|
2020-06-22 00:34:02 +02:00
|
|
|
*/
|
|
|
|
class DesignRepository extends BaseRepository
|
|
|
|
{
|
2021-06-03 00:02:30 +02:00
|
|
|
public function delete($design) :Design
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
$design->name = $design->name.'_deleted_'.Str::random(5);
|
2021-06-03 00:02:30 +02:00
|
|
|
|
|
|
|
parent::delete($design);
|
|
|
|
|
|
|
|
return $design;
|
|
|
|
}
|
2020-06-22 00:34:02 +02:00
|
|
|
}
|