@extends('layouts.simple.master') @section('title', 'Newsletter Subscribers List') @section('style') @endsection @section('breadcrumb-title')

Newsletter Subscribers List

@endsection @section('breadcrumb-items') @endsection @section('content')
@if(count($subscribers) > 0) @foreach($subscribers as $index=>$subscriber) @endforeach @endif
ID email Subscription Status Created At
{{$subscriber->id;}} {{$subscriber->email}} @if($subscriber->is_subscribe==1) Active @else Active @endif {{ Carbon\Carbon::parse($subscriber->created_at)->format('d-m-Y H:i:s')}}
{!! $subscribers->links() !!}
@endsection @section('script') @endsection