@php $notifications = Modules\OrderManage\Entities\CustomerNotification::where('customer_id',Auth::id())->where('read_status',0)->latest()->take(4)->get(); @endphp {{ __('common.notification') }}
@foreach ($notifications as $notification)

{{$notification->title}}


@endforeach
@if (count($notifications) > 0) {{ __('common.view_all') }} @endif