whoami7 - Manager
:
/
home
/
dataiclx
/
datasyspk.com
/
app
/
Upload File:
files >> /home/dataiclx/datasyspk.com/app/Upload.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Upload extends Model { use SoftDeletes; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'file_original_name', 'file_name', 'user_id', 'extension', 'type', 'file_size', ]; public function user() { return $this->belongsTo(User::class); } }
Copyright ©2021 || Defacer Indonesia