@php $typeData = null; if ($type == 'homes') { $typeData = 'home'; } elseif ($type == 'employees') { $typeData = 'employee'; } elseif ($type == 'vehicles') { $typeData = 'vehicles'; } else { $typeData = 'resident'; } @endphp Selected {{ $typeData }} select {{ $typeData }} @foreach ($data as $value) @if ($typeData == 'resident') {{ $value->first_name }} {{ $value->middle_name }} {{ $value->surname }} @elseif ($typeData == 'vehicle') {{ $value->name }} @else {{ $value->name }} @endif @endforeach