One Hat Cyber Team
Your IP :
3.22.248.193
Server IP :
192.145.235.60
Server :
Linux ngx365.inmotionhosting.com 5.14.0-427.33.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 30 09:45:56 EDT 2024 x86_64
Server Software :
Apache
PHP Version :
8.2.27
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
centos12
/
public_html
/
centosuit
/
app
/
Models
/
Edit File:
EventFile.php
<?php namespace App\Models; use App\Traits\IconTrait; use Illuminate\Database\Eloquent\Factories\HasFactory; /** * App\Models\EventFile * * @property int $id * @property int|null $company_id * @property int $event_id * @property string|null $filename * @property string|null $hashname * @property string|null $size * @property int|null $added_by * @property int|null $last_updated_by * @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|EventFile newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|EventFile newQuery() * @method static \Illuminate\Database\Eloquent\Builder|EventFile query() * @method static \Illuminate\Database\Eloquent\Builder|EventFile whereAddedBy($value) * @method static \Illuminate\Database\Eloquent\Builder|EventFile whereCompanyId($value) * @method static \Illuminate\Database\Eloquent\Builder|EventFile whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|EventFile whereEventId($value) * @method static \Illuminate\Database\Eloquent\Builder|EventFile whereFilename($value) * @method static \Illuminate\Database\Eloquent\Builder|EventFile whereHashname($value) * @method static \Illuminate\Database\Eloquent\Builder|EventFile whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|EventFile whereLastUpdatedBy($value) * @method static \Illuminate\Database\Eloquent\Builder|EventFile whereSize($value) * @method static \Illuminate\Database\Eloquent\Builder|EventFile whereUpdatedAt($value) * @mixin \Eloquent */ class EventFile extends BaseModel { use IconTrait; use HasFactory; const FILE_PATH = 'events'; protected $appends = ['file_url', 'icon']; public function getFileUrlAttribute() { return asset_url_local_s3(EventFile::FILE_PATH . '/' . $this->event_id . '/' . $this->hashname); } }
Simpan