File "Course-20250405104749.php"

Full Path: /home/fundopuh/trader.fxex.org/app/Models/Course-20250405104749.php
File size: 591 bytes
MIME-type: text/x-php
Charset: utf-8

<?php  
// this Code is Cracked by dharunMods-YouTube-Channel

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Course extends Model
{
    protected $fillable = [
        'title', 'amount', 'image_url', 'paidCourses', 'category_id', 'desc'
    ];

    public function category()
    {
        return $this->belongsTo(Category::class);
    }

    public function lessons()
    {
        return $this->hasMany(Lesson::class);
    }
    

    public function users()
    {
    return $this->belongsToMany(User::class)->withTimestamps();
    }
}