@extends('app') @section('title', __('home.welcome.title')) @section('content')

@lang('common.newestpilots')

@foreach ($users as $user)

{{ $user->name_private }}

@if ($user->avatar == null) @else @endif

@if (filled($user->home_airport)) {{ $user->home_airport->icao }} @endif

@lang('common.profile')
@endforeach
@endsection