How to make random number with format 25-3456 and 165.09826 in laravel?
I want to create a random number with a format like that which will be used as an invoice number and also a contract number when making transactions, I use the Laravel framework $request['no_vak'] = number_format(mt_rand(10000-9999),0,'','-'); $request['no_contract'] = number_format(mt_rand(100000,999999),0,'','-'); i…