Försök, formatera först om källarrayen enligt nedan :
$result = array();
foreach($depots as $depot){
$result[$depot->operating_company_name][] = $depot;
}
Försök sedan för att skapa vald,
<select name="depot_id" class="form-control">
<?php foreach($result as $key=>$val): ?>
<optgroup label="<?php echo $key; ?>">
<?php foreach($val as $option): ?>
<option value="<?php echo $option->depot_id; ?>"><?php echo $option->depot_name; ?></option>
<?php endforeach; ?>
</optgroup>
<?php endforeach; ?>
</select>