123456789101112131415161718192021222324252627 |
- <?php
- namespace App\Repositories\Models\Course;
- use App\Repositories\Models\Model;
- use Prettus\Repository\Contracts\Transformable;
- use Prettus\Repository\Traits\TransformableTrait;
- /**
- * Class Organization.
- *
- * @package namespace App\Repositories\Models\Course;
- */
- class OrganizationCourse extends Model implements Transformable
- {
- use TransformableTrait;
- protected $table = 'course_organization_course';
- /**
- * The attributes that are mass assignable.
- *
- * @var array
- */
- protected $guarded = [];
- }
|