@if ($notification->type == 'Offer')
{{ __($notification->message) }}
{{ $notification->created_at->toFormattedDateString() }}
@endif
@if ($notification->type == 'Order')
{{ __($notification->message) }}
{{ $notification->created_at->toFormattedDateString() }}
@endif
@if ($notification->type == 'Withdraw')
{{ __($notification->message) }}
{{ $notification->created_at->toFormattedDateString() }}
@endif
@if ($notification->type == 'Reject Project')
{{ __($notification->message) }}
{{ $notification->created_at->toFormattedDateString() }}
@endif
@if ($notification->type == 'Activate Project' || $notification->type == 'Inactivate Project' || $notification->type == 'Project' || $notification->type == 'Profile')
{{ __($notification->message) }}
{{ $notification->created_at->toFormattedDateString() }}
@endif
@if ($notification->type == 'Email Verify')
{{ __($notification->message) }}
{{ $notification->created_at->toFormattedDateString() }}
@endif
@if ($notification->type == 'Account')
{{ __($notification->message) }}
{{ $notification->created_at->toFormattedDateString() }}
@endif
@if ($notification->type == 'Identity Verify')
{{ __($notification->message) }}
{{ $notification->created_at->toFormattedDateString() }}
@endif
@if ($notification->type == 'New Job')
@php $job_details = \App\Models\JobPost::select('id','user_id','slug')->where('id', $notification->identity)->first() @endphp
@if(isset($job_details))
{{ __($notification->message) }}
@else
{{ __($notification->message) }}
@endif
{{ $notification->created_at->toFormattedDateString() }}
@endif
@if ($notification->type == 'Ticket Update' || $notification->type == 'Ticket')
{{ __($notification->message) }}
{{ $notification->created_at->toFormattedDateString() }}
@endif
@if ($notification->type == 'Subscription')
{{ __($notification->message) }}
{{ $notification->created_at->toFormattedDateString() }}
@endif
@if ($notification->type == 'Deposit')
{{ __($notification->message) }}
{{ $notification->created_at->toFormattedDateString() }}
@endif