20 lines
307 B
PHP
20 lines
307 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use RuLong\Panel\Models\Storage;
|
|
|
|
class Advert extends Model
|
|
{
|
|
|
|
public function storage()
|
|
{
|
|
return $this->belongsTo(Storage::class)->withDefault();
|
|
}
|
|
|
|
public function seller()
|
|
{
|
|
return $this->belongsTo(Seller::class)->withDefault();
|
|
}
|
|
}
|