invoiceninja/app/Repositories/DesignRepository.php

33 lines
639 B
PHP
Raw Normal View History

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