Files
monica/app/Models/Pet.php
T

51 lines
1.0 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\MorphOne;
class Pet extends Model
{
use HasFactory;
protected $table = 'pets';
/**
* The attributes that are mass assignable.
*
* @var array<string>
*/
protected $fillable = [
'pet_category_id',
'contact_id',
'name',
];
/**
* Get the pet category associated with the pet.
*/
public function petCategory(): BelongsTo
{
return $this->belongsTo(PetCategory::class);
}
/**
* Get the contact associated with the pet.
*/
public function contact(): BelongsTo
{
return $this->belongsTo(Contact::class);
}
/**
* Get the pet's feed item.
*/
public function feedItem(): MorphOne
{
return $this->morphOne(ContactFeedItem::class, 'feedable');
}
}