2022-04-26 21:16:46 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2022-04-27 18:57:21 -07:00
|
|
|
use App\Traits\Categorizable;
|
|
|
|
use App\Traits\Imageable;
|
|
|
|
use App\Traits\Ownable;
|
2022-04-26 21:16:46 -07:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Owned extends Model
|
|
|
|
{
|
|
|
|
use HasFactory;
|
2022-04-27 18:57:21 -07:00
|
|
|
use Ownable;
|
|
|
|
use Categorizable;
|
|
|
|
use Imageable;
|
2022-04-26 21:16:46 -07:00
|
|
|
|
|
|
|
protected $table = 'owned';
|
2022-04-27 18:57:21 -07:00
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------- relationships ---- */
|
2022-04-26 21:16:46 -07:00
|
|
|
}
|