芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/myvyralapp.com/bck/app/Models/Receipient.php
'integer', 'country' => 'integer', 'type' => 'string', 'firstname' => 'string', 'lastname' => 'string', 'mobile_code' => 'string', 'mobile' => 'string', 'city' => 'string', 'state' => 'string', 'address' => 'string', 'zip_code' => 'string', 'details' => 'object', ]; public function scopeAuth($query) { $query->where("user_id",auth()->user()->id); } public function getFullnameAttribute() { return $this->firstname . ' ' . $this->lastname; } public function user() { return $this->belongsTo(User::class); } public function receiver_country() { return $this->belongsTo(ReceiverCounty::class,'country'); } }