@extends('layouts.admin') @push('title', get_phrase('Subscriber')) @section('content')
@if (count($subscribers) > 0)
@foreach ($subscribers as $key => $subscriber) @php $user_details = App\Models\User::where('email', $subscriber->email)->first(); @endphp @endforeach
@else @include('admin.no_data') @endif
@if (count($subscribers) > 0)

{{ get_phrase('Showing') . ' ' . count($subscribers) . ' ' . get_phrase('of') . ' ' . $subscribers->total() . ' ' . get_phrase('data') }}

{{ $subscribers->links() }}
@endif
@endsection @push('js')@endpush