Files
sam-manage/app/Models/Juil/ConstructionSitePhotoRow.php
김보곤 e272f16357 feat: [database] codebridge DB connection 적용 (merge 후 재적용)
- 78개 MNG 전용 모델에 $connection = 'codebridge' 재적용
- config/database.php codebridge connection 포함
2026-03-07 11:28:47 +09:00

55 lines
1.3 KiB
PHP

<?php
namespace App\Models\Juil;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class ConstructionSitePhotoRow extends Model
{
protected $table = 'construction_site_photo_rows';
protected $fillable = [
'construction_site_photo_id',
'sort_order',
'before_photo_path',
'before_photo_gcs_uri',
'before_photo_size',
'during_photo_path',
'during_photo_gcs_uri',
'during_photo_size',
'after_photo_path',
'after_photo_gcs_uri',
'after_photo_size',
];
protected $casts = [
'sort_order' => 'integer',
'before_photo_size' => 'integer',
'during_photo_size' => 'integer',
'after_photo_size' => 'integer',
];
public function constructionSitePhoto(): BelongsTo
{
return $this->belongsTo(ConstructionSitePhoto::class);
}
public function hasPhoto(string $type): bool
{
return ! empty($this->{$type.'_photo_path'});
}
public function getPhotoCount(): int
{
$count = 0;
foreach (['before', 'during', 'after'] as $type) {
if ($this->hasPhoto($type)) {
$count++;
}
}
return $count;
}
}