File "WebmasterBanner.php"
Full Path: /var/www/lionsclub/core/app/Models/WebmasterBanner.php
File size: 295 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class WebmasterBanner extends Model
{
use HasFactory;
public function banners()
{
return $this->hasMany('App\Models\Banner', 'section_id');
}
}