In blade template i use last() method to find last iteration of foreach loop:
@foreach ($colors as $k => $v) id !!} {{ $colors-
Don't know if that last method is working but if not, try this:
@foreach ($colors as $v) id !!} @if($v == end($colors)) 'selected' @endif > {!! $v->name !!} @endforeach