D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
kader-lms.com
/
app
/
Filename :
SmContentType.php
back
Copy
<?php namespace App; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use App\Scopes\StatusAcademicSchoolScope; class SmContentType extends Model { use HasFactory; protected static function boot() { parent::boot(); static::addGlobalScope(new StatusAcademicSchoolScope); } }