@extends('back.layouts.master') @section('content')
@if($notifications->count())
    @foreach ($notifications as $notification) @php $notification_link = notification_link($notification); @endphp @if($notification->type == 'OrderPaid')
  • سفارش جدید ثبت شد

    {{ $notification->data['message'] }}
    {{ jdate($notification->created_at)->ago() }}
  • @elseif($notification->type == 'UserRegistered')
  • کاربر جدید ثبت نام کرد

    {{ $notification->data['message'] }}
    {{ jdate($notification->created_at)->ago() }}
  • @elseif($notification->type == 'ContactCreated')
  • پیام جدید دریافت شد

    {{ $notification->data['message'] }}
    {{ jdate($notification->created_at)->ago() }}
  • @endif @if ($notification_link)

    مشاهده

    @endif @endforeach
@else

چیزی برای نمایش وجود ندارد!

@endif
{{ $notifications->links() }}
@endsection