@extends('layouts.management') @section('content')
Management

Notifications

Management > Notifications
Publish new notification
Remove current notification



@foreach($notifs as $n)
is_displayed) style="opacity: 0.3;" @endif class="management-notif-list-details"> @foreach(config('app.language') as $k => $v)
{{ $n->getTranslation('description', $k) }} {{ ($n->button_link !== null) ? '(Button name: '. $n->getTranslation('button_name', $k) .')' : '' }}
@endforeach

Count clicks close : {{ $n->clicks_close }}

@if($n->button_link !== null)

Count clicks link : {{ $n->clicks_link }}

@endif

Publish at : {{ $n->created_at->format('d/m/Y à H:i') }} @if(!$n->is_displayed)  — Unpublish at : {{ $n->updated_at->format('d/m/Y à H:i') }} @endif

is_displayed) style="opacity: 0.3;display: flex;flex-direction: row;align-items: center;" @else style="display: flex;flex-direction: row;align-items: center;" @endif > @if($n->is_displayed)
Unpublish
@endif
@endforeach
@endsection