@php use App\Models\Platform; $platforms = Platform::all()->sortBy('name'); @endphp

Platforms

    @foreach ($platforms as $platform) @php $platformName = str_replace('/', '_', str_replace(' ', '_', $platform->name)); @endphp
  • {{ $platform->name }}
  • @endforeach