32 lines
569 B
PHP
32 lines
569 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PackageCategory extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $hidden = ['created_at', 'updated_at'];
|
|
|
|
protected $fillable = [
|
|
'category_id',
|
|
'package_id'
|
|
];
|
|
|
|
public function package()
|
|
{
|
|
return $this->belongsTo(Package::class);
|
|
}
|
|
|
|
public function category()
|
|
{
|
|
return $this->belongsTo(Category::class);
|
|
}
|
|
}
|
|
|