%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/app/Models/ |
Upload File : |
<?php
namespace App\Models;
use App\Traits\IconTrait;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* App\Models\ProjectFile
*
* @property int $id
* @property int $user_id
* @property int $project_id
* @property string $filename
* @property string|null $hashname
* @property string|null $size
* @property string|null $description
* @property string|null $google_url
* @property string|null $dropbox_link
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property string|null $external_link_name
* @property string|null $external_link
* @property int|null $added_by
* @property int|null $last_updated_by
* @property-read mixed $file_url
* @property-read mixed $icon
* @property-read \App\Models\Project $project
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile query()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereAddedBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereDropboxLink($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereExternalLink($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereExternalLinkName($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereFilename($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereGoogleUrl($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereHashname($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereLastUpdatedBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereSize($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereUserId($value)
* @property int|null $company_id
* @method static \Illuminate\Database\Eloquent\Builder|ProjectFile whereCompanyId($value)
* @mixin \Eloquent
*/
class ProjectFile extends BaseModel
{
use IconTrait;
const FILE_PATH = 'project-files';
protected $appends = ['file_url', 'icon'];
public function getFileUrlAttribute()
{
return (!is_null($this->external_link)) ? $this->external_link : asset_url_local_s3(ProjectFile::FILE_PATH . '/' . $this->project_id . '/' . $this->hashname);
}
public function project(): BelongsTo
{
return $this->belongsTo(Project::class);
}
}