{{--
=====================================================
Etebarit - by Gisoo Web Solutions
------------------------------------------------------
Gisoo.net
------------------------------------------------------
Copyright (c) 2026 Gisoo Web Solutions
=====================================================
This code is protected by copyright
=====================================================
File: index.blade.php
------------------------------------------------------
Use: Admin list of live shops with the merchant-fee
management behind each row's detail page.
=====================================================
--}}
@extends('layouts.admin')
@section('title', __('admin.shops_manage.title'))
@section('breadcrumb')
{{ __('admin.shops_manage.subtitle') }}
| {{ __('admin.shops_manage.columns.shop') }} | {{ __('admin.shops_manage.columns.slug') }} | {{ __('admin.shops_manage.columns.sales') }} | {{ __('admin.shops_manage.columns.customers') }} | {{ __('admin.shops_manage.columns.fee') }} | {{ __('admin.shops_manage.columns.status') }} | {{ __('admin.shops_manage.columns.actions') }} |
|---|---|---|---|---|---|---|
|
@if ($shop->logo_path)
{{ $shop->name }}
@if ($shop->province)
{{ $shop->province }}@if ($shop->city)، {{ $shop->city }}@endif
@endif
|
{{ $shop->slug }} | @toman((int) $shop->sales_total) | @fa((int) $shop->customers_count) | {{ __('admin.shops_manage.fee_display', [ 'percent' => \App\Support\Format::persianDigits(\App\Support\Format::percentFromBp($shop->fee_percent)), 'cap' => \App\Support\Format::tomanFa((int) $shop->fee_cap), ]) }} | @if ($shop->isApproved()) {{ __('admin.shops_manage.statuses.approved') }} @else {{ __('admin.shops_manage.statuses.rejected') }} @endif | {{ __('admin.shops_manage.detail') }} |
| {{ __('admin.shops_manage.empty') }} | ||||||