'json', 'banks' => 'json', ]; public function paper() { return $this->belongsTo(Paper::class)->select(['id', 'name']); } public function admin() { return $this->belongsTo(Admin::class)->with(['shop'])->select(['id', 'name', 'username','shop_id']); } }