{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: applications.blade.php ------------------------------------------------------ Use: Operator queue of shop applications filed by regular users. Approve upgrades the user to a merchant and brings the shop live; reject leaves them a normal user. ===================================================== --}} @extends('layouts.admin') @section('title', __('admin.shops.title')) @section('breadcrumb') @endsection @section('page') @php $canReview = auth('admin')->user()->allowed('users.review'); @endphp

{{ __('admin.shops.title') }}

{{ __('admin.shops.info') }}
@forelse ($applications as $shop) @empty @endforelse
{{ __('admin.shops.columns.shop') }} {{ __('admin.shops.columns.owner') }} {{ __('admin.shops.columns.support_phone') }} {{ __('admin.shops.columns.date') }} {{ __('admin.shops.columns.actions') }}
@if ($shop->logo_path) {{ $shop->name }} @else @endif
{{ $shop->name }}
{{ $shop->slug }}
{{ $shop->user?->fullName() ?? '—' }} {{ $shop->support_phone ? \App\Support\Format::persianDigits($shop->support_phone) : '—' }} @jalali($shop->created_at) @if ($canReview)
@csrf
@csrf
@else @endif
{{ __('admin.shops.empty') }}
@endsection