@extends('store.themes.modern-coffee-shop.layouts.app') @section('title', __('Premium Fresh Roasted Coffee')) @section('meta_description', __('Discover our selection of premium fresh roasted coffee beans from around the world')) @section('content')

{{ __('Premium Coffee') }}

{{ __('Freshly roasted beans delivered to your door') }}

{{ __('Shop Now') }}

{{ __('Featured Products') }}

@foreach($featuredProducts as $product)
{{ $product->name }}

{{ $product->name }}

{{ number_format($product->price, 2) }} {{ __('EGP') }}
@endforeach
@if($offers->count() > 0)

{{ __('Special Offers') }}

@foreach($offers as $offer)
{{ $offer->discount_percentage }}% {{ __('OFF') }}

{{ $offer->title }}

{{ $offer->description }}

{{ __('View Offer') }}
@endforeach
@endif @endsection