Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
app
/
Models
:
Lesson.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php // this Code is Cracked by dharunMods-YouTube-Channel namespace App\Models; use Illuminate\Database\Eloquent\Model; class Lesson extends Model { protected $fillable = [ 'title', 'length', 'videolink', 'preview', 'course_id', 'category_id', 'desc', 'thumbnail' ]; public function course() { return $this->belongsTo(Course::class); } public function category() { return $this->belongsTo(Category::class); } public function nextLesson() { return static::where('course_id', $this->course_id) ->where('id', '>', $this->id) ->orderBy('id', 'asc') ->first(); } public function previousLesson() { return static::where('course_id', $this->course_id) ->where('id', '<', $this->id) ->orderBy('id', 'desc') ->first(); } }