@extends('layouts.partials.master') @section('title', 'Logistas') @push('styles') @endpush @section('content') @include('layouts.components.section-title', ['title' => 'Logistas - '.$store->commercial_name])
@include('layouts.components.alerts')
Adicionar @if ($images instanceof \Illuminate\Pagination\LengthAwarePaginator) Ver todos @else Paginar @endif
@include('layouts.components.per-page', ['subject' => $images, 'route' => 'str_stores_images', 'uuid' => $store->uuid])
@forelse($images as $image) @empty @endforelse
ID Imagem Ações
{{ $image->id }} Imagem
@if (!$image->trashed())
@csrf @method('DELETE')
@else
@csrf
@csrf @method('DELETE')
@endif

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

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