@extends('layouts.app') @section('title', 'Panel Comercio · Mis productos') @section('content')

Mis productos

{{ $profile->brand_name ?? 'Mi comercio' }} · Administra lo que se muestra en la home.
+ Nuevo producto
@include('comercio.partials.alerts') @include('comercio.partials.nav') @if($products->count() === 0)
Aún no tienes productos
Crea tu primer producto para que aparezca en el welcome.
Crear producto
@else
@foreach($products as $p)
{{ $p->name }}
@if($p->category) {{ $p->category }} @else Sin categoría @endif · @if($p->is_active) Activo @else Oculto @endif
{{ $p->name }}
@if(!is_null($p->price))
${{ number_format($p->price, 0, ',', '.') }}
CLP
@else
Precio a convenir
@endif
{{ \Illuminate\Support\Str::limit($p->description, 90) }}
Editar
@csrf @method('DELETE')
@endforeach
{{ $products->links() }}
@endif
@endsection