@extends('web.layouts.layout') @section('content')
@include('web.layouts.header')

{{__('web.notifications')}}

@if(count($notifications) == 0) @else @foreach($notifications as $row)
{{$row->title}}

{{$row->date}}

{!! $row->description !!}

@endforeach @if($count_paginate > 1)
@endif @endif
@section('inject_js') @endsection @stop