Viewing: CorporateGalleryImage.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class CorporateGalleryImage extends Model { use HasFactory; protected $table = 'corporate_gallery_attachments'; protected $appends = ['attachment']; public function getAttachmentAttribute(){ if (array_key_exists('image', $this->attributes)){ return url(getImageURL($this->attributes['image'])); } } }
Return