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
:
Invoice.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\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Invoice extends Model { use HasFactory; public function user() { return $this->belongsTo(User::class); } public function account() { return $this->belongsTo(Mt4Details::class, 'mt4_details_id', 'id'); } protected $casts = [ 'reminded_at' => 'datetime:Y-m-d', ]; }