comment voir si une valeur est affichée Laravel

//If you want to see if you have passed value to a controller for example use this

public function destroy({Your model name} $group)
    {
       dd($group->all());
    }
Monty_mole