@extends('layouts.master') @section('title') {{__("admin.notifications")}} @endsection @section('css') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') {{__("admin.all_notifications")}} @endslot @slot('title') {{__("admin.control")}} {{__("admin.notifications")}} ! @endslot @endcomponent

{{__("admin.all_notifications")}}

@if(isset($super_admin) || isset($notification_control)) {{__('admin.add_notification')}} @endif
@include("layouts.session") @component('components.errors') @slot('id') notification_id @endslot @endcomponent @if(count($notifications) == 0) @endif @foreach($notifications as $count => $notification) @endforeach
# {{__("admin.type")}} {{__("admin.phone")}} {{__("admin.title")}} {{__("admin.message")}} {{__("admin.created_at")}}
{{__("admin.no_data_found")}}
{{$count+1}} {{__("admin.user_type_$notification->type")}} {{$notification->phone ?? __("admin.not_found")}} {{$notification->title}} {{$notification->message}} {{$notification->created_at}}
{{$notifications->links()}}
@endsection @section('js') @endsection