91 lines
2.2 KiB
PHP
91 lines
2.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\Concerns\HasModuleMedia;
|
|
use App\Models\Concerns\InteractsWithActivityLog;
|
|
use Illuminate\Database\Eloquent\Attributes\Appends;
|
|
use Illuminate\Database\Eloquent\Attributes\Guarded;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Spatie\MediaLibrary\HasMedia;
|
|
|
|
#[Guarded(['id'])]
|
|
#[Appends([
|
|
'subtotal_formatted',
|
|
'discount_formatted',
|
|
'total_formatted',
|
|
'created_at_formatted',
|
|
])]
|
|
class Purchase extends Model implements HasMedia
|
|
{
|
|
use HasModuleMedia;
|
|
use InteractsWithActivityLog;
|
|
use SoftDeletes;
|
|
|
|
public static function mediaModuleName(): string
|
|
{
|
|
return 'purchase';
|
|
}
|
|
|
|
public function registerMediaCollections(): void
|
|
{
|
|
$this->addMediaCollection('photos');
|
|
}
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'subtotal' => 'integer',
|
|
'discount' => 'integer',
|
|
'total' => 'integer',
|
|
];
|
|
}
|
|
|
|
public function subtotalFormatted(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => 'Rp '.number_format($this->subtotal, 0, ',', '.'),
|
|
);
|
|
}
|
|
|
|
public function discountFormatted(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => 'Rp '.number_format($this->discount, 0, ',', '.'),
|
|
);
|
|
}
|
|
|
|
public function totalFormatted(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => 'Rp '.number_format($this->total, 0, ',', '.'),
|
|
);
|
|
}
|
|
|
|
public function createdAtFormatted(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => $this->created_at?->translatedFormat('l, d F Y H:i'),
|
|
);
|
|
}
|
|
|
|
public function supplier(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Supplier::class);
|
|
}
|
|
|
|
public function createdBy(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'created_by_id');
|
|
}
|
|
|
|
public function items(): HasMany
|
|
{
|
|
return $this->hasMany(PurchaseItem::class);
|
|
}
|
|
}
|