@yield('title')

    @if(count($unreadNotifications))
  • @foreach($unreadNotifications as $notification)
    @if($notification->type == 'App\Notifications\NewUserRegistered')

    L'utente {{$notification->data['user']['first_name'] }} {{$notification->data['user']['last_name']}} si รจ appena registrato.


    Clicca qui per approvarlo
    @csrf() @method('DELETE')
    @else @php $shopId= $notification->data['shop']['id'] ; @endphp

    {{$notification->data['from_user']['first_name']}} {{$notification->data['from_user']['last_name']}} aggiunto un nuovo negozio con il nome: {{$notification->data['shop']['name']}}


    CONFERMA?

    @csrf @method('PUT')
    @endif

    @endforeach
  • @endif
  • Profile Picture