@extends('front.layouts.master') @section('title', 'Notifications') @section('content')
@include('front.pages.candidate.candidate-sidebar')
{{ translate('Notifications') }}:
@if (count($notifications) > 0) @foreach ($notifications as $notification) @endforeach
{{ translate('Title') }} {{ translate('Message') }} {{ translate('Date') }} {{ translate('Action') }}
{{ $notification->data['title'] }} {{ $notification->created_at->diffForHumans() }}
{{ $notifications->lastItem() }} {{ translate('Results Showing In') }} {{ $notifications->total() }} {{ translate('Notifications') }}
{{ $notifications->links('front.vendor.pagination.custom') }}
@else
{{ no_results_found( 'You have no notifications yet.', 'Notifications will appear here when you receive them.', 'frontend/assets/images/bg/no-search-icon.svg', ) }}
@endif
@endsection