@extends('sendportal::layouts.app') @section('title', __('Subscribers')) @section('heading') {{ __('Subscribers') }} @endsection @section('content') @component('sendportal::layouts.partials.actions') @slot('left')
@if(count($tags))
@endif @if(request()->anyFilled(['name', 'status'])) {{ __('Clear') }} @endif
@endslot @slot('right')
{{ __('Tags') }} {{ __('New Subscriber') }} @endslot @endcomponent
@forelse($subscribers as $subscriber) @empty @endforelse
{{ __('Email') }} {{ __('Name') }} {{ __('Tags') }} {{ __('Created') }} {{ __('Status') }} {{ __('Actions') }}
{{ $subscriber->email }} {{ $subscriber->full_name }} @forelse($subscriber->tags as $tag) {{ $tag->name }} @empty - @endforelse {{ $subscriber->created_at->diffForHumans() }} @if($subscriber->unsubscribed_at) {{ __('Unsubscribed') }} @else {{ __('Subscribed') }} @endif
@csrf @method('DELETE') {{ __('Edit') }}

{{ __('No Subscribers Found') }}

@include('sendportal::layouts.partials.pagination', ['records' => $subscribers]) @endsection @push('css') @endpush @push('js') @endpush