How to add numbers to the database with "+" for example +380991111111 , when added, plus disappears somewhere. example

 $query = DB::table('wallets')->insert( ['wallet' => '+380991111111', 'password' => 'password', 'month_limit' => 'monthLimit', 'status' => 'statu', 'type' => 'type', 'group' => 'group', ]); 
  • 3
    The structure of the table (or migration) for wallets show, please. Maybe you have an INT . - VenZell
  • i.share.pho.to/a790ec46_o.png Here, VARCHAR (15) - rodgers
  • Why do you have a big_chinise_ci encoding? How do you check that plus disappeared? - VenZell
  • I did not see the encoding, Mysql Workbench did it himself, I did not change the encoding, but check how ?! Well in the field value is written without +. Changed on utf8 nothing has changed - rodgers

0