- Refactored CustomPathGenerator to handle S3 keys and default paths more effectively. - Changed media collection references from 'photos' to 'images' across various services. - Updated methods to retrieve media URLs using the new path generation logic. - Enhanced transaction-related components to display associated images.
65 lines
1.7 KiB
PHP
65 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Models\Scopes\RawMaterialPriceScope;
|
|
use App\Services\S3PresignedService;
|
|
use Illuminate\Database\Eloquent\Attributes\Appends;
|
|
use Illuminate\Database\Eloquent\Attributes\Guarded;
|
|
use Illuminate\Database\Eloquent\Attributes\ScopedBy;
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
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;
|
|
use Spatie\MediaLibrary\InteractsWithMedia;
|
|
|
|
#[Appends(['formatted_price'])]
|
|
#[Guarded(['id'])]
|
|
#[ScopedBy([RawMaterialPriceScope::class])]
|
|
class RawMaterialPrice extends Model implements HasMedia
|
|
{
|
|
use HasFactory, InteractsWithMedia, SoftDeletes;
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'price' => 'integer',
|
|
'stock' => 'integer',
|
|
];
|
|
}
|
|
|
|
protected function formattedPrice(): Attribute
|
|
{
|
|
return Attribute::make(
|
|
get: fn () => 'Rp '.number_format($this->price, 0, ',', '.'),
|
|
);
|
|
}
|
|
|
|
public function cuttingMaterials(): HasMany
|
|
{
|
|
return $this->hasMany(CuttingMaterial::class);
|
|
}
|
|
|
|
public function purchaseItems(): HasMany
|
|
{
|
|
return $this->hasMany(PurchaseItem::class);
|
|
}
|
|
|
|
public function rawMaterial(): BelongsTo
|
|
{
|
|
return $this->belongsTo(RawMaterial::class)->withTrashed();
|
|
}
|
|
|
|
public function getPhotoUrlAttribute(): ?string
|
|
{
|
|
$media = $this->getFirstMedia('images');
|
|
|
|
return $media
|
|
? app(S3PresignedService::class)->getTemporaryUrl($media->getPath())
|
|
: null;
|
|
}
|
|
}
|