@extends('layouts/LayoutMaster') @section('title', 'Уведомления') @section('vendor-style') @endsection @section('page-style') @endsection @section('content')
@foreach($notis as $noti) @php $user = Helper::getUserInfo($noti->user); @endphp
@if($noti->type == 'add-friend')
{{ $user->name }} прислал запрос в друзья
{!! Helper::buttonFriend($noti->user, $noti->uid, 1) !!}
@elseif($noti->type == 'accept-friend')
{{ $user->name }} принял запрос в друзья
@elseif($noti->type == 'lenta-like' || $noti->type == 'lenta-comment') @php $lenta = Helper::getLentaInfo($noti->info); @endphp @if($noti->type == 'lenta-like')
{{ $user->name }} поставил лайк на ленту: {{ $lenta->name }}
@elseif($noti->type == 'lenta-comment')
{{ $user->name }} прокомментировал ленту: {{ $lenta->name }}
"Отличный выбор групп, мне все нравится!"
@endif @endif
{{ Helper::rdate($noti->created_at, 1) }}
@endforeach
@endsection @section('content-right') @endsection @section('vendor-script') @endsection @section('page-script') @endsection