@extends('admin.layouts.dashboard') @section('title', 'All Notify Items') @section('content')

Notify Item Mail

@if($notifyItems->count() > 0) @foreach($notifyItems as $key => $notifyItem) @endforeach @else

No Record Found

@endif
# Item Name Email Message Action
{{ $notifyItems->firstItem() + $key }} {{ $notifyItem->item->name }} @if($notifyItem->variant) ({{ $notifyItem->variant->type }}) @endif {{ $notifyItem->name }} {{ $notifyItem->email }}

{{ $notifyItem->message }}

@csrf
{!! $notifyItems->links() !!}
@endsection