@extends('admin.layout.app') {{-- makes everything from admin.app appear here --}} @section('heading', 'All Subscribers') @section('main_content')
{{-- Each iteration prints one row () in the table --}} @foreach ($all_subscribers as $subscriber) {{-- helps numbering 1,2,3 dynamically --}} @endforeach
SL Subscribers
{{ $loop->iteration }}{{ $subscriber->email }}
@csrf
@endsection