@extends('backend.partials.master') @section('title') {{ __('merchantshops.title') }} {{ __('levels.list') }} @endsection @section('maincontent')

{{ __('merchantshops.title') }} {{ __('levels.list') }}

@php $i=1; @endphp @foreach($merchant_shops as $shop) @endforeach
{{ __('levels.id') }} {{ __('merchantshops.name') }} {{ __('merchantshops.contact') }} {{ __('merchantshops.address') }} {{ __('levels.status') }} {{ __('levels.actions') }}
{{$i++}}
{{$shop->name}} ( {{ $shop->id }} )
{{$shop->contact_no}}
{{$shop->address}}
@if($shop->status == \App\Enums\Status::ACTIVE) {{ __('merchantshops.active') }} @else {{ __('merchantshops.inactive') }} @endif
{{ $merchant_shops->links() }}

{!! __('Showing') !!} {{ $merchant_shops->firstItem() }} {!! __('to') !!} {{ $merchant_shops->lastItem() }} {!! __('of') !!} {{ $merchant_shops->total() }} {!! __('results') !!}

@endsection()