@extends('Backend.dashboard') @section('title') Subscribers @endsection @section('content') @if(Session::has('success'))
@endif @if(Session::has('danger'))
@endif @if(count($errors) > 0)
@foreach($errors->all() as $error) @endforeach
@endif
@foreach($subscribers as $subscriber) @endforeach
Id Subscriber Email Actions
{{ $subscriber->id }} {{ $subscriber->email }} Delete From List
@endsection