@extends('landingPage') @push('style') @endpush @section('main_content')
Inicio / Catálogo

TODOS LOS PRODUCTOS

Mostrando 12 de 24 productos
@php $products = [ ['id' => 2, 'name' => 'Aceite de Eucalipto', 'price' => '18.90€', 'img' => asset('img/imgPrueba.png'), 'cat' => 'Aceites'], ['id' => 3, 'name' => 'Jabón de Caléndula', 'price' => '8.00€', 'img' => asset('img/imgPrueba.png'), 'cat' => 'Cosmética'], ['id' => 4, 'name' => 'Bálsamo de Karité', 'price' => '15.75€', 'img' => asset('img/imgPrueba.png'), 'cat' => 'Cosmética'], ['id' => 5, 'name' => 'Aceite de Menta', 'price' => '14.20€', 'img' => asset('img/imgPrueba.png'), 'cat' => 'Aceites'], ['id' => 6, 'name' => 'Té Verde Orgánico', 'price' => '10.50€', 'img' => asset('img/imgPrueba.png'), 'cat' => 'Infusiones'], ['id' => 7, 'name' => 'Bruma de Rosas', 'price' => '22.00€', 'img' => asset('img/imgPrueba.png'), 'cat' => 'Cosmética'], ['id' => 8, 'name' => 'Sales de Epson', 'price' => '9.90€', 'img' => asset('img/imgPrueba.png'), 'cat' => 'Baño'], ['id' => 9, 'name' => 'Vela de Soja', 'price' => '16.50€', 'img' => asset('img/imgPrueba.png'), 'cat' => 'Hogar'], ['id' => 10, 'name' => 'Crema Facial Algas', 'price' => '28.00€', 'img' => asset('img/imgPrueba.png'), 'cat' => 'Cosmética'], ['id' => 11, 'name' => 'Tónico Facial', 'price' => '14.75€', 'img' => asset('img/imgPrueba.png'), 'cat' => 'Cosmética'], ['id' => 12, 'name' => 'Infusión Energizante', 'price' => '11.20€', 'img' => asset('img/imgPrueba.png'), 'cat' => 'Infusiones'], ]; @endphp @foreach($products as $product)
{{ $product['name'] }}
VER DETALLE
{{ $product['cat'] }}

{{ $product['name'] }}

{{ $product['price'] }}
@endforeach
@endsection @push('scripts') @endpush