@extends('layouts.app')
@section('title'){{trans('general.notifications')}} -@endsection
@section('content')
{{trans('general.notifications_subtitle')}}
{{trans('general.notifications')}}
@if (count($notifications) != 0)
{!! Form::open([
'method' => 'POST',
'url' => "notifications/delete",
'class' => 'd-inline'
]) !!}
{!! Form::button('', ['class' => 'btn btn-lg align-baseline p-0 e-none btn-link actionDeleteNotify']) !!}
{!! Form::close() !!}
@endif
{{trans('general.no_notifications')}}