@extends('layouts.delegates_dashboard_layout') @section('title') {{Session::has('lang')&&Session::get('lang')=='en'?' notifications':'الاشعارات'}} @endsection @section('content')
{{trans('stores_dashboard.notification')}}

{{trans('stores_dashboard.notification_desc')}}

@foreach($notifications as $notification)
@if(isset($notification->data['order_id'])) {{$notification->data['message_'.app()->getLocale()]}} @else {{$notification->data['message_'.app()->getLocale()]}} @endif

{{$notification->created_at->format('d.m.Y')}}

@endforeach
@endsection