@extends('dashboard.layout.mainlayout') @section('content')

@lang('user.merchants')

@foreach ($merchant as $index=>$item) @endforeach
# @lang('user.name') @lang('user.phone') @lang('user.email') @lang('user.image') @lang('user.operations')
{{$index+1}} {{$item->name}} {{$item->phone}} ( {{ $item->country_code }}) {{$item->email}} @if($item->dependence == '1')

@lang('user.Not_dependence')

@else

@lang('user.dependence')

@endif @if(Auth::guard('admin')->user()->hasPermission('customers_read')) @lang('user.show') @else @lang('user.show') @endif @if(Auth::guard('admin')->user()->hasPermission('customers_delete'))
@csrf @method('DELETE')
@else @endif
@endsection