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

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

Back to {{$artist->name}}

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