コード例 #1
0
ファイル: Helpers.php プロジェクト: jnicolasbc/admin_swp_com
 public static function doctorFavoritesDel($patient_id, $business_id)
 {
     $favorito = BusinessFavorite::where('patient_id', $patient_id)->where('business_id', $business_id);
     $favorito->delete();
     return Helpers::mgs('Doctor Delete Favorite');
 }