153 lines
4.2 KiB
PHP
153 lines
4.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\ContractType;
|
|
use Carbon\Carbon;
|
|
use Cknow\Money\Money;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class Car extends Model
|
|
{
|
|
use HasFactory, softDeletes;
|
|
|
|
protected $fillable = [
|
|
'stammnummer',
|
|
'vin',
|
|
'colour',
|
|
'notes',
|
|
'known_damage',
|
|
'initial_date',
|
|
'last_check_date',
|
|
'kilometers',
|
|
'car_model_id',
|
|
];
|
|
|
|
public function getNameAttribute()
|
|
{
|
|
$out = $this->brand->name . ' ' . $this->carModel->name;
|
|
|
|
return $out;
|
|
}
|
|
|
|
public function getKilometersFormattedAttribute()
|
|
{
|
|
return number_format($this->kilometers, 0, '.', '\'');
|
|
}
|
|
|
|
public function getInitialDateFormattedAttribute()
|
|
{
|
|
return Carbon::parse($this->initial_date)->format('d.m.Y');
|
|
}
|
|
|
|
public function getLastCheckDateFormattedAttribute()
|
|
{
|
|
return Carbon::parse($this->last_check_date)->format('d.m.Y');
|
|
}
|
|
|
|
public function getDeletedAtAttribute($deleted_at)
|
|
{
|
|
if ($deleted_at) {
|
|
return Carbon::parse($deleted_at)->format('d.m.Y');
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public function brand()
|
|
{
|
|
return $this->carModel->brand();
|
|
}
|
|
|
|
public function carModel()
|
|
{
|
|
return $this->belongsTo(CarModel::class);
|
|
}
|
|
|
|
public function latestSellContract()
|
|
{
|
|
return $this->hasOne(Contract::class)->sellContracts()->latest('date')->first();
|
|
}
|
|
|
|
public function latestBuyContract()
|
|
{
|
|
return $this->hasOne(Contract::class)->buyContracts()->latest('date')->first();
|
|
}
|
|
|
|
public function isSold()
|
|
{
|
|
return $this->buyContracts()->count() >= 1 && $this->buyContracts()->count() <= $this->sellContracts()->count();
|
|
}
|
|
|
|
public function latestProfit()
|
|
{
|
|
if (!$this->isSold()) {
|
|
return null;
|
|
}
|
|
|
|
return $this->latestSellContract()->price->subtract($this->latestBuyContract()->price)->format();
|
|
}
|
|
|
|
public function contracts()
|
|
{
|
|
return $this->hasMany(Contract::class);
|
|
}
|
|
|
|
public function buyContracts()
|
|
{
|
|
return $this->hasMany(Contract::class)->buyContracts();
|
|
}
|
|
|
|
public function sellContracts()
|
|
{
|
|
return $this->hasMany(Contract::class)->sellContracts();
|
|
}
|
|
|
|
public function scopeWithContractCount($query)
|
|
{
|
|
return $query->withCount([
|
|
'contracts AS buy_contracts_count' => function ($query) {
|
|
$query->where('type', (string)ContractType::BuyContract);
|
|
},
|
|
'contracts AS sell_contracts_count' => function ($query) {
|
|
$query->where('type', (string)ContractType::SellContract);
|
|
},
|
|
]);
|
|
}
|
|
|
|
public function scopeUnsoldOnly($query)
|
|
{
|
|
return $query->withContractCount()->havingRaw('buy_contracts_count > sell_contracts_count');
|
|
}
|
|
|
|
public function scopeSoldOnly($query)
|
|
{
|
|
return $query->withContractCount()->having('sell_contracts_count', '>', 0)->havingRaw('buy_contracts_count <= sell_contracts_count');
|
|
}
|
|
|
|
public function scopeFilter($query, array $filters)
|
|
{
|
|
$query->when($filters['search'] ?? null, function ($query, $search) {
|
|
$query->where(function ($query) use ($search) {
|
|
$query->orWhere('colour', 'like', $search . '%')
|
|
->orWhere('stammnummer', 'like', $search . '%')
|
|
->orWhere('vin', 'like', $search . '%')
|
|
->orWhereHas('carModel', function ($query) use ($search) {
|
|
$query->where('name', 'like', $search.'%')
|
|
->orWhereHas('brand', function ($query) use ($search) {
|
|
$query->where('name', 'like', $search.'%');
|
|
});
|
|
});
|
|
});
|
|
})->when($filters['trashed'] ?? null, function ($query, $trashed) {
|
|
if ($trashed === 'with') {
|
|
$query->withTrashed();
|
|
} elseif ($trashed === 'only') {
|
|
$query->onlyTrashed();
|
|
}
|
|
});
|
|
}
|
|
}
|