Используйте forelse
вместо foreach
@forelse ($structures as $item)
{{ $item }}
@empty
No Items found.
@endforelse
forelse
проверьте условие, как показано ниже.
@if ($structures->count())
@foreach ($structures as $item)
{{ $item }}
@endforeach
@else
No Items found.
@endif