@extends('layout.user') @section('page-title', __('basic.Notification')) @section('nav-title', __('basic.Notification')) @section('page-js-script') @endsection @section('container')

{{ __('basic.Notification') }}

@empty($notification) @endempty @foreach ($notification as $item)
@if (empty($item['thumbnail'])) @else @endif

{{ $item['title'] }}

{!! $item['content'] !!}

{{ date('Y-m-d', strtotime($item['create_time'])) }}

{{ __('robot.More') }}
@endforeach
@include('partial._pagination', $paginate) @endsection