@extends('frontend.layouts.app') @section('title') {{ __('all_notifications') }} @endsection @section('main')
{{-- Sidebar --}}
{{ __('all_notifications') }}
@if ($notifications->count() > 0) @foreach ($notifications as $noti) @if ($noti->type == 'App\Notifications\Website\Candidate\ApplyJobNotification') @endif @if ($noti->type == 'App\Notifications\Website\Candidate\BookmarkJobNotification') @endif @if ($noti->type == 'App\Notifications\Website\Company\JobCreatedNotification' || $noti->type == 'App\Notifications\Website\Company\EditApproveNotification' || $noti->type == 'App\Notifications\Website\Company\JobDeletedNotification') @endif @if ($noti->type == 'App\Notifications\JobApprovalNotification') @endif @endforeach @else @endif
@if ($notifications->total() > $notifications->count()) @endif
@endsection