@extends('layouts.frontend') @section('ogp') @endsection @section('title', $store->post->title) @section('content')
@if($store->post->media()->notFeatured()->count())
@endif

{!! nl2br($store->post->excerpt) !!}

@if($store->phone)

{!! $store->phone !!}

@endif @if($store->whatsapp)

{!! $store->whatsapp !!}

@endif @if($store->email)

{!! $store->email !!}

@endif @if($store->website)

{!! domain_url($store->website) !!}

@endif @if($store->address)

{!! $store->address !!}

@endif
@if($store->products->count())
@foreach($store->products as $product)
@include('partials.card')
@endforeach
@endif
@endsection @section('scripts')
@include('partials.cart', [ 'cart' => Cart::instance($store->post->slug) ])
@endsection