@extends('admin.layout.app') @section('preload-section') @endsection @section ('content')
@if (session()->has('success'))
@if(is_array(session()->get('success')))
    @foreach (session()->get('success') as $message)
  • {{ $message }}
  • @endforeach
@else {{ session()->get('success') }} @endif
@endif @if (count($errors) > 0) @if($errors->any()) @endif @endif

{{ __('keywords.Stores')}} {{ __('keywords.Notification')}} {{ __('keywords.List')}}


@if(count($notification)>0) @php $i=1; @endphp @foreach($notification as $not) @php $i++; @endphp @endforeach @else @for ($i = 1; $i < 5; $i++) @endfor @endif
# {{ __('keywords.Title')}} {{ __('keywords.image')}} {{ __('keywords.Store')}} {{ __('keywords.Notification Text')}}
{{$i}} {{$not->not_title}} @if($not->image != NULL)category image@else

No Image

@endif
{{$not->store_name}} {{$not->not_message}}
{{ __('keywords.No data found')}}

{{ $notification->render("pagination::bootstrap-4") }}
@endsection @section('postload-section') {{-- You must include files that have no direct efect on the load of the page and can be loaded meanwhile other tasks can be performed by user--}} @endsection