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)
{
DB::table('tags')
->where('id','=',$id)
->delete();
//->where('id','=',$id)
->delete($id);
}
}