File "CourseUser-20250405104942.php"

Full Path: /home/fundopuh/trader.fxex.org/app/Models/CourseUser-20250405104942.php
File size: 569 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 CourseUser extends Model
{
    protected $table = 'course_user'; // Specify the name of the pivot table if it's different from the default convention

    protected $fillable = ['user_id', 'course_id', 'created_at']; // Fillable fields

    public function user()
    {
        return $this->belongsTo(User::class);
    }

    public function course()
    {
        return $this->belongsTo(Course::class);
    }
}