- Added activity logging functionality to multiple models including CuttingMaterial, Employee, Invoice, and more. - Implemented `getActivitylogOptions` method to configure logging behavior. - Updated composer dependencies to include `spatie/laravel-activitylog`. - Created a custom Activity model extending Spatie's Activity model. - Added configuration file for activity logging settings.
70 lines
1.7 KiB
PHP
70 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Enums\PriceType;
|
|
use Illuminate\Database\Eloquent\Attributes\Appends;
|
|
use Illuminate\Database\Eloquent\Attributes\Guarded;
|
|
use Illuminate\Database\Eloquent\Attributes\Scope;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Spatie\Activitylog\Support\LogOptions;
|
|
use Spatie\Activitylog\Models\Concerns\LogsActivity;
|
|
|
|
#[Appends(['formatted_price', 'type_label'])]
|
|
#[Guarded(['id'])]
|
|
class ProductPrice extends Model
|
|
{
|
|
use HasFactory, LogsActivity;
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'type' => PriceType::class,
|
|
'price' => 'integer',
|
|
];
|
|
}
|
|
|
|
public function getActivitylogOptions(): LogOptions
|
|
{
|
|
return LogOptions::defaults()
|
|
->logAll()
|
|
->logOnlyDirty()
|
|
->dontLogEmptyChanges();
|
|
}
|
|
|
|
protected function formattedPrice(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => 'Rp '.number_format($this->price, 0, ',', '.'),
|
|
);
|
|
}
|
|
|
|
#[Scope]
|
|
protected function retail(Builder $query): void
|
|
{
|
|
$query->where('type', PriceType::RETAIL);
|
|
}
|
|
|
|
#[Scope]
|
|
protected function wholesale(Builder $query): void
|
|
{
|
|
$query->where('type', PriceType::WHOLESALE);
|
|
}
|
|
|
|
public function variant(): BelongsTo
|
|
{
|
|
return $this->belongsTo(ProductVariant::class, 'variant_id');
|
|
}
|
|
|
|
protected function typeLabel(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => $this->type->label(),
|
|
);
|
|
}
|
|
}
|