| Current Path : /home/zada/public_html/app/Models/ |
| Current File : /home/zada/public_html/app/Models/BlogCategory.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Traits\PreventDemoModeChanges;
use Illuminate\Database\Eloquent\SoftDeletes;
class BlogCategory extends Model
{
use PreventDemoModeChanges;
use SoftDeletes;
public function posts()
{
return $this->hasMany(Blog::class);
}
}