@extends('merchant.layout')
@section('title',__('Merchants'))
@section('css')
@endsection
@section('breadcrump')
{{ __('Merchants') }}
- {{__('Home')}}
- {{__('Merchants')}}
@endsection
@section('content')
# |
{{ __('Name') }} |
{{__('Roles')}} |
{{ __('Action') }} |
@foreach($merchants as $merchant)
{{$merchant->id}} |
{{$merchant->username}} |
@foreach($merchant['roles'] as $role)
{{$role['role']['name']}},
@endforeach
|
|
@endforeach
@endsection
@section('scripts')
@include('merchant.pages.merchants.scripts')
@endsection