@extends('merchant.layout') @section('title',__('Merchants')) @section('css') @endsection @section('breadcrump')

{{ __('Merchants') }}

@endsection @section('content')

{{ __('Merchants table') }}

{{__('Create')}}
@foreach($merchants as $merchant) @endforeach
# {{ __('Name') }} {{__('Roles')}} {{ __('Action') }}
{{$merchant->id}} {{$merchant->username}} @foreach($merchant['roles'] as $role) {{$role['role']['name']}}, @endforeach
@csrf @method('delete')
@endsection @section('scripts') @include('merchant.pages.merchants.scripts') @endsection