@extends('layouts.app') @section('content')
{{ _lang('Email Subscribers') }}
@php $date_format = get_option('date_format'); @endphp @php $time_format = get_option('time_format') == '24' ? 'H:i' : 'h:i A'; @endphp @foreach($email_subscribers as $subscriber) @endforeach
{{ _lang('Subscribed Date') }} {{ _lang('Email') }} {{ _lang('IP') }}
{{ date("$date_format $time_format",strtotime($subscriber->created_at)) }} {{ $subscriber->email }} {{ $subscriber->ip_address }}
@endsection