id=>0 gets me no data while id=>1 gets me data having id 1.
I want display all that have an id in the options box.
$companies = Company::where(['id'=>0])->get();
$companies_dropdown = "<option selected disabled>Please select from below</option>";
foreach($companies as $com){
$companies_dropdown .= "<option value='".$com->id."'>".$com->name."</option>";