@extends('layouts.app') @section('styles') @endsection @section('content')
User Avatar

{{ $user->name }}

@if (Auth::user()->hasRole('admin')) @elseif (Auth::user()->hasRole('regioadmin')) @elseif (Auth::user()->hasRole('orgadmin')) @elseif (Auth::user()->hasRole('facilitator')) @endif
{{ __('Invoices') }}
    @if (count($myinvoices) > 0)
  • {{ __('The following invoices are available:') }}
  • {{ __('Invoice number') }}
  • {{ __('Invoice date') }}
  • @foreach ($myinvoices as $myinvoice)
  • {{ $myinvoice->invoicedate }}
  • @endforeach @else
  • {{ __('There are no invoices for you') }}
  • @endif
@endsection @push('scripts') @endpush