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

CATEGORIAS DE TIENDAS

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif
LISTADO DE CATEGORIAS DE TIENDAS {{ $store_categories->total() }}
@foreach($store_categories as $store_category) @endforeach
NOMBRE CREACIÓN
{{ $store_category->name }} {{ $store_category->created_at }}
@if(count($store_categories)==0)
No hay registros
@endif
@include('admin.common.pagination.default', ['paginator' => $store_categories])
@endsection