@extends('admin.layout.master') @section('content') @if (session()->has('success'))
{{ session()->get('success') }}
@endif

@if ($flag == 1) Saloons @else Artists @endif

{{-- Add Service --}}
@if (!empty($artists)) @foreach ($artists as $key => $artist) @endforeach @else Data Not Found @endif
S.no Name Phone Email Address City Status Action
{{ $key + 1 }} {{ ucwords($artist->name) }} {{ $artist->phone }} {{ $artist->email }} {{ $artist->address }} {{ ucwords($artist->city) }} @if ($artist->status === null) Approve Decline @elseif ($artist->status == 1) Approved @else Declined @endif View Delete
@endsection