mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
80 lines
2.0 KiB
PHP
80 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Akuechler\Geoly;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Spatie\Comments\Models\Concerns\HasComments;
|
|
use Spatie\Image\Manipulations;
|
|
use Spatie\MediaLibrary\HasMedia;
|
|
use Spatie\MediaLibrary\InteractsWithMedia;
|
|
use Spatie\MediaLibrary\MediaCollections\Models\Media;
|
|
|
|
class BookCase extends Model implements HasMedia
|
|
{
|
|
use HasFactory;
|
|
use HasComments;
|
|
use InteractsWithMedia;
|
|
use Geoly;
|
|
|
|
/**
|
|
* The attributes that aren't mass assignable.
|
|
* @var array
|
|
*/
|
|
protected $guarded = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'id' => 'integer',
|
|
'lat' => 'double',
|
|
'lon' => 'array',
|
|
'digital' => 'boolean',
|
|
'deactivated' => 'boolean',
|
|
];
|
|
|
|
public function registerMediaConversions(Media $media = null): void
|
|
{
|
|
$this
|
|
->addMediaConversion('preview')
|
|
->fit(Manipulations::FIT_CROP, 300, 300)
|
|
->nonQueued();
|
|
$this->addMediaConversion('thumb')
|
|
->fit(Manipulations::FIT_CROP, 130, 130)
|
|
->width(130)
|
|
->height(130);
|
|
}
|
|
|
|
public function registerMediaCollections(): void
|
|
{
|
|
$this->addMediaCollection('images');
|
|
}
|
|
|
|
public function orangePills(): HasMany
|
|
{
|
|
return $this->hasMany(OrangePill::class);
|
|
}
|
|
|
|
/*
|
|
* This string will be used in notifications on what a new comment
|
|
* was made.
|
|
*/
|
|
public function commentableName(): string
|
|
{
|
|
return __('Bookcase');
|
|
}
|
|
|
|
/*
|
|
* This URL will be used in notifications to let the user know
|
|
* where the comment itself can be read.
|
|
*/
|
|
public function commentUrl(): string
|
|
{
|
|
return url()->route('bookCases.comment.bookcase', ['bookCase' => $this->id]);
|
|
}
|
|
}
|