����JFIF���������
1#@!#!123s
D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
nc6d095
/
study.helpmanscs.com
/
app
/
Models
/
Filename :
TextLessonAttachment.php
back
Copy
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class TextLessonAttachment extends Model { protected $table = 'text_lessons_attachments'; public $timestamps = false; protected $dateFormat = 'U'; protected $guarded = ['id']; public function file() { return $this->belongsTo('App\Models\File', 'file_id', 'id'); } }