I want to insert data into my DB, some of my data are stored, some others are not stored :
the dd() shows me that all data are ok :
array:9 [▼
"_token" => "Texlm3Sx2zf0BBm0t2JF1chuIsvliuMHNVL8xH5g"
"name" => "Dupont"
"firstname" => "Robert"
"team" => "ABC"
"tel1" => "036303240"
"tel2" => "123556567"
"email" => "dupontlajoite@ABC.be"
"password" => "12345678"
"password_confirmation" => "12345678"
]
In MySQL, the record shows that I don't insert all information :
Team, tel1 and tel2 are NULL in my table, the others fields are stored (name, firstname...)
My question :
1.Is it possible to see the insert query to test it in PHPMyAdmin ?
Thank you.