refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s

This commit is contained in:
Kroonk
2026-05-22 16:19:55 +02:00
parent 38cc4c09ca
commit a213a1dba0
2215 changed files with 242567 additions and 6015 deletions

View File

@@ -0,0 +1,59 @@
<?php
namespace App\Models\Account;
use App\Models\User\User;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* @property Account $account
* @property int $account_id
* @property User $user
* @property int $user_id
* @property int $import_job_id
* @property string $contact_information
* @property bool $skipped
* @property string $skip_reason
*/
class ImportJobReport extends Model
{
protected $table = 'import_job_reports';
/**
* The attributes that aren't mass assignable.
*
* @var array<string>|bool
*/
protected $guarded = ['id'];
/**
* Get the account record associated with the import job report.
*
* @return BelongsTo
*/
public function account()
{
return $this->belongsTo(Account::class);
}
/**
* Get the user record associated with the import job report.
*
* @return BelongsTo
*/
public function user()
{
return $this->belongsTo(User::class);
}
/**
* Get the import job record associated with the gift.
*
* @return BelongsTo
*/
public function importJob()
{
return $this->belongsTo(ImportJob::class);
}
}