{{ __('Name') }}:
{{ auth()->user()->name }}
{{ __('Email') }}:
{{ auth()->user()->email }}
{{ __('Companies') }}:
@foreach (auth()->user()->companies as $company)
{{ $company->name . ' - ' . $company->fiscal_year }}
@if (!$loop->last)
,
@endif
@endforeach