@extends('front.pages.account.index') @section('account_title') {{__('Notifications')}} @endsection @section('css') @endsection @section('account_content')

{{__('Latest Notifications')}}

@if(count($product_user_notification) > 0) @foreach($product_user_notification as $product)
{{__('New product has been added')}} : {{$product->name}}
{{$product->description}}
@endforeach @else
{{__('No notifications now')}}
@endif
@endsection @section('account_scripts') @endsection