1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Repositories/DesignRepository.php

33 lines
639 B
PHP
Raw Normal View History

2020-06-22 00:34:02 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-06-22 00:34:02 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. 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;
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
{
public function delete($design) :Design
{
$design->name = $design->name . "_deleted_" . Str::random(5);
parent::delete($design);
return $design;
}
2020-06-22 00:34:02 +02:00
}