@extends('layouts.user_type.guest') @section('header_title', __('اعلان‌ها')) @push('extra_css') @endpush @section('content')
@include('user.user_menu')

{{ __('اعلان‌ها') }}

@csrf
@forelse($notifications as $notification)

{{ $notification->title }}

@if($notification->body)

{{ $notification->body }}

@endif {{ __('مشاهده') }}
@empty
{{ __('هنوز اعلانی برای شما ثبت نشده است.') }}
@endforelse {{ $notifications->links() }}
@endsection