@extends('layouts.admin') @section('content')

Followers UNDER ({{$artist->name}}) / LIST

Back to {{$artist->name}}

@include('components.admin.error-message')
All Followers
@if(!empty($followers)) @for($i = 0; $i < count($followers); $i++) @endfor @endif
Name Sub Date STATUS DATE ACTION
{{__date_parse($followers[$i]->start_date)}} - {{__date_parse($followers[$i]->end_date)}} {{$followers[$i]->is_active == '1' ? 'active' : 'inactive'}} {{\Carbon\Carbon::parse($followers[$i]->created_at)->toDayDateTimeString()}}
{{$followers->links()}}
@endsection