You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xshop/app/Models/Attachment.php

61 lines
1.6 KiB
PHTML

5 months ago
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Spatie\Translatable\HasTranslations;
5 months ago
class Attachment extends Model
{
use HasFactory,HasTranslations;
public static $mrohps = [Product::class,Post::class,Group::class,
Category::class,Clip::class,Gallery::class];
public $translatable = ['title','subtitle','body'];
public function getRouteKeyName()
{
return 'slug';
}
public function url()
{
if ($this->file == null) {
return asset('/assets/upload/logo.svg');
}
return \Storage::url('attachments/' . $this->file);
}
public function tempUrl() // WIP
{
if ($this->file == null) {
return asset('/assets/upload/logo.svg');
}
return \Storage::url('attachments/' . $this->file);
}
public function ownerModel(){
switch ($this->attachable_type){
case Product::class:
return Product::whereId($this->attachable_id)->first();
case Post::class:
return Post::whereId($this->attachable_id)->first();
case Group::class:
return Group::whereId($this->attachable_id)->first();
case Category::class:
return Category::whereId($this->attachable_id)->first();
case Clip::class:
return Clip::whereId($this->attachable_id)->first();
case Gallery::class:
return Gallery::whereId($this->attachable_id)->first();
default:
return null;
}
}
5 months ago
}