113 lines
2.7 KiB
PHP
113 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Helpers\ScoutHelper;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\MorphOne;
|
|
use Laravel\Scout\Searchable;
|
|
|
|
class Loan extends Model
|
|
{
|
|
use HasFactory;
|
|
use Searchable;
|
|
|
|
/**
|
|
* Possible types.
|
|
*/
|
|
public const TYPE_DEBT = 'debt';
|
|
|
|
public const TYPE_LOAN = 'loan';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var list<string>
|
|
*/
|
|
protected $fillable = [
|
|
'vault_id',
|
|
'type',
|
|
'name',
|
|
'description',
|
|
'amount_lent',
|
|
'currency_id',
|
|
'loaned_at',
|
|
'settled_at',
|
|
'settled',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
protected $casts = [
|
|
'settled' => 'boolean',
|
|
'loaned_at' => 'datetime',
|
|
'settled_at' => 'datetime',
|
|
];
|
|
|
|
/**
|
|
* When updating a model, this method determines if we should update the search index.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function searchIndexShouldBeUpdated()
|
|
{
|
|
return ScoutHelper::isActivated();
|
|
}
|
|
|
|
/**
|
|
* Get the vault associated with the loan.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\Vault, $this>
|
|
*/
|
|
public function vault(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Vault::class);
|
|
}
|
|
|
|
/**
|
|
* Get the currency associated with the loan.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo<\App\Models\Currency, $this>
|
|
*/
|
|
public function currency(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Currency::class);
|
|
}
|
|
|
|
/**
|
|
* Get the contact that did the loan.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany<\App\Models\Contact, $this>
|
|
*/
|
|
public function loaners(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Contact::class, 'contact_loan', 'loan_id', 'loaner_id');
|
|
}
|
|
|
|
/**
|
|
* Get the contact records the loan was made to.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsToMany<\App\Models\Contact, $this>
|
|
*/
|
|
public function loanees(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(Contact::class, 'contact_loan', 'loan_id', 'loanee_id');
|
|
}
|
|
|
|
/**
|
|
* Get the loan's feed item.
|
|
*
|
|
* @return \Illuminate\Database\Eloquent\Relations\MorphOne<\App\Models\ContactFeedItem, $this>
|
|
*/
|
|
public function feedItem(): MorphOne
|
|
{
|
|
return $this->morphOne(ContactFeedItem::class, 'feedable');
|
|
}
|
|
}
|