Risolto problema con chiamata della funzione delete per il tag

This commit is contained in:
Amministratore 2023-05-30 11:03:13 +02:00
parent 6f16876a69
commit 1b248f1863

View File

@ -37,7 +37,7 @@ class tag extends Model
public static function delete($id) public static function delete($id)
{ {
DB::table('tags') DB::table('tags')
->where('id','=',$id) //->where('id','=',$id)
->delete(); ->delete($id);
} }
} }