belongsTo('app\\common\\model\\file\\UploadFile', 'image_id', 'file_id') ->bind(['file_path', 'file_name', 'file_url']); } public static function getImage($project_id) { $model = new static; return $model->with(['file']) ->where('project_id', '=', $project_id) ->select(); } }