@extends('layouts.app') @section('title', \App\Models\Setting::get('site_name', 'Brew & Bean') . ' - Artisan Coffee Shop') @section('content') @php $homeBackground = \App\Models\Setting::where('key', 'home_background')->first(); $heroTitle = \App\Models\Setting::get('home_hero_title', 'Welcome to Brew & Bean'); $heroSubtitle = \App\Models\Setting::get( 'home_hero_subtitle', 'Artisan coffee and specialty drinks made with passion and expertise. Visit us today for a perfect cup of coffee.', ); // Google Maps settings $googleMapsApiKey = \App\Models\Setting::get('google_maps_api_key', ''); $storeLatitude = \App\Models\Setting::get('store_latitude', '34.0522'); $storeLongitude = \App\Models\Setting::get('store_longitude', '-118.2437'); $storeMapZoom = \App\Models\Setting::get('store_map_zoom', '15'); $storeMapTitle = \App\Models\Setting::get('store_map_title', 'Visit Our Coffee Shop'); $storeAddress = \App\Models\Setting::get('contact_address', '123 Coffee Street, Brewville, CA 90210'); @endphp

{{ $heroTitle }}

{{ $heroSubtitle }}

Café Premium

Seleccionado de las mejores fincas cafetaleras del mundo, nuestros granos se tuestan a la perfección cada día.

👨‍🍳

Baristas Expertos

Nuestros baristas están capacitados para preparar la taza perfecta cada vez, con atención a cada detalle.

🏠

Ambiente Acogedor

Relájate en un entorno cálido y acogedor, perfecto para trabajar, estudiar o ponerte al día con amigos.

{{--

Our Story

Founded in 2010, Brew & Bean has been serving the community with the finest coffee sourced from sustainable farms around the world. Our baristas are trained to perfection, ensuring every cup meets our high standards.

We believe in creating a warm, welcoming environment where friends can gather, professionals can work, and coffee enthusiasts can enjoy the perfect brew.

From our signature espresso blends to our seasonal specialties, every drink is crafted with passion and expertise.

🏆

Award Winning

Recognized for excellence in coffee quality and customer service

{{ $storeMapTitle }}

Address:

{{ $storeAddress }}

Get Directions
--}}

¿Listo para la taza perfecta?

Visítanos hoy y experimenta la diferencia que hace la calidad.

Explora nuestro menú
@if ($googleMapsApiKey) @else @endif @endsection