Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/app/Models/CreditNoteItemImage.php
Назад
<?php namespace App\Models; use App\Traits\IconTrait; /** * App\Models\CreditNoteItemImage * * @property int $id * @property int $credit_note_item_id * @property string $filename * @property string|null $hashname * @property string|null $size * @property string|null $external_link * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @property-read mixed $file_url * @property-read mixed $icon * @method static \Illuminate\Database\Eloquent\Builder|CreditNoteItemImage newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|CreditNoteItemImage newQuery() * @method static \Illuminate\Database\Eloquent\Builder|CreditNoteItemImage query() * @method static \Illuminate\Database\Eloquent\Builder|CreditNoteItemImage whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|CreditNoteItemImage whereCreditNoteItemId($value) * @method static \Illuminate\Database\Eloquent\Builder|CreditNoteItemImage whereExternalLink($value) * @method static \Illuminate\Database\Eloquent\Builder|CreditNoteItemImage whereFilename($value) * @method static \Illuminate\Database\Eloquent\Builder|CreditNoteItemImage whereHashname($value) * @method static \Illuminate\Database\Eloquent\Builder|CreditNoteItemImage whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|CreditNoteItemImage whereSize($value) * @method static \Illuminate\Database\Eloquent\Builder|CreditNoteItemImage whereUpdatedAt($value) * @property-read mixed $file * @mixin \Eloquent */ class CreditNoteItemImage extends BaseModel { use IconTrait; const FILE_PATH = 'credit-note-files'; protected $appends = ['file_url', 'icon', 'file']; protected $fillable = ['credit_note_item_id', 'filename', 'hashname', 'size', 'external_link']; public function getFileUrlAttribute() { if($this->external_link){ return str($this->external_link)->contains('http') ? $this->external_link : asset_url_local_s3($this->external_link); } return asset_url_local_s3(CreditNoteItemImage::FILE_PATH . '/' . $this->credit_note_item_id . '/' . $this->hashname); } public function getFileAttribute() { return $this->external_link ?: (CreditNoteItemImage::FILE_PATH . '/' . $this->credit_note_item_id . '/' . $this->hashname); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка