@extends('front.pages.company-dashboard.main') @section('title', 'Notification') @section('dashboard-main-content')
@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
{{ translate('No Notifications') }}
@endif
@endsection