2020-06-24 13:49:06 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-06-24 13:49:06 +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-24 13:49:06 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-06-24 13:49:06 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Repositories;
|
|
|
|
|
|
|
|
use App\Models\Document;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for document repository.
|
|
|
|
*/
|
|
|
|
class DocumentRepository extends BaseRepository
|
|
|
|
{
|
|
|
|
public function delete($document)
|
|
|
|
{
|
|
|
|
$document->deleteFile();
|
|
|
|
$document->forceDelete();
|
|
|
|
}
|
|
|
|
|
2020-06-24 14:12:43 +02:00
|
|
|
public function restore($document)
|
2020-06-24 13:49:06 +02:00
|
|
|
{
|
2022-03-17 03:20:58 +01:00
|
|
|
// if (! $document->trashed()) {
|
|
|
|
// return;
|
|
|
|
// }
|
2020-06-24 13:49:06 +02:00
|
|
|
|
2022-03-17 03:20:58 +01:00
|
|
|
// $document->restore();
|
2020-06-24 13:49:06 +02:00
|
|
|
}
|
2022-03-17 03:20:58 +01:00
|
|
|
|
|
|
|
public function archive($document)
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2020-06-24 13:49:06 +02:00
|
|
|
}
|