Laravel à cocher cocher coché

//You should write a value in the checkbox and then check if that value is null or not:

//HTML, in form:
<input id="check" type="checkbox" name="check" value="check">

//PHP, in controller:
$isChecked = $request->check != null;

//If the checkbox is checked, then the $request->check will not be null. Otherwise, it will.
//Then the $isChecked variable will be true if the checkbox is checked, and false if it isn't.
NachooCh