@extends('layouts.comercio') @section('title','Mi comercio') @section('content')

Comercios

{{-- Mostrar el botón solo si el usuario tiene 0 comercios --}} @if($comercios->count() === 0) Nuevo comercio @endif
@if(session('success'))
{{ session('success') }}
@endif
@forelse($comercios as $c)
@if($c->imagen) Imagen principal de {{ $c->nombre }} @endif

{{ $c->nombre }}

{{ $c->ciudad }}{{ $c->ciudad && $c->region ? ', ' : '' }}{{ $c->region }}
{{ $c->direccion }}
@if($c->telefono)
{{ $c->telefono }}
@endif @if($c->email)
{{ $c->email }}
@endif
@empty
No hay comercios registrados.
@endforelse
{{ $comercios->withQueryString()->links() }}
@endsection