@extends('layouts.merchant-backend-layout') @section('content')

Notification List



@include('includes.messages')
@if(count($notificationlist) == 0)

{{ trans('admin::users.pages.no_record_found') }}

@else @foreach($notificationlist as $notify)
{{ $notify['content'] }}
@endforeach @endif
@stop