@extends('admin.layout.app')
@section('content')
| Profile |
Name |
Email |
Status |
Join Date |
Action |
@foreach($artists as $artist)
|
{{$artist->name ?? ''}} |
{{$artist->email ?? ''}} |
{{$artist->status ?? ''}} |
{{ $artist->created_at ? $artist->created_at->format('j/n/Y') : '' }}
|
|
@endforeach
@endsection