@extends('layouts.app-general') @section('content')

TIENDAS

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif
LISTADO DE TIENDAS {{ $stores->total() }}
@foreach($stores as $store) @endforeach
# NOMBRE CATEGORIA CREACIÓN
@if(isset($store->logo)) logo}") }}" alt="" style="width:40px;height:40px;border-radius:10px;"> @endif {{ $store->name }} {{ $store->category_name }} {{ $store->created_at }}
@if(count($stores)==0)
No hay registros
@endif
@include('admin.common.pagination.default', ['paginator' => $stores])
@endsection