@extends('layouts.partials.master') @section('title', 'Logistas') @push('styles') @endpush @section('content') @include('layouts.components.section-title', ['title' => 'Comércio']) {{-- filters - start --}}
@if (\App\Helpers\ModuleHelper::isModuleActive('module_zone'))
@endif
{{-- filters - end --}} @include('layouts.components.alerts')
Adicionar @if ($stores instanceof \Illuminate\Pagination\LengthAwarePaginator) Ver todos @else Paginar @endif
@include('layouts.components.per-page', ['subject' => $stores, 'route' => 'str_stores'])
@if (count($languages) > 0) @endif @forelse($stores as $store) @if (count($languages) > 0) @endif @empty @endforelse
ID Nome Número fiscal E-mail Cidade Tipo Imagem Estados Easy Pay ResponsávelTraduçõesAções
{{ $store->id }} {{ $store->commercial_name }} {{ $store->fiscal_number }} {{ $store->email }} {{ $store->city }} {{ __('translations.store_types.' . $store->type) }} @if(!empty($store['logo_img'])) Imagem @endif @include('layouts.components.status', ['status' => $store->status]) @if ($store->split_account_id) @include('layouts.components.badges', ['type' => 'success', 'text' => 'Ativo']) @else @include('layouts.components.badges', ['type' => 'danger', 'text' => 'Inativo']) @endif @if ($store->legalRepresentative) {{ $store->legalRepresentative->user->first_name }} {{ $store->legalRepresentative->user->last_name }} @endif @include('layouts.components.display-flags', ['context' => $store])
@if (in_array($store->type, ['service', 'both'])) @if ($workers) @endif @if ($scheduleManagement) @endif @endif
@csrf

{{ __('translations.no_results') }}

@include('layouts.components.pagination', ['subject' => $stores]) @include('layouts.components.confirmation-modal') @endsection