28 lines
457 B
PHP
28 lines
457 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Dcat\Admin\Traits\HasDateTimeFormatter;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Ad extends Model
|
|
{
|
|
use Concerns\HasShowable;
|
|
use HasDateTimeFormatter;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'is_show' => 'bool',
|
|
];
|
|
|
|
/**
|
|
* 此广告所属的广告位
|
|
*/
|
|
public function address()
|
|
{
|
|
return $this->belongsTo(AdAddress::class, 'address_id');
|
|
}
|
|
}
|