@extends('front.layout.app') @section('title', 'Specials') @section('content')
First slide

Specials

@if(isset($collection) && !empty($collection)) @forelse($collection as $cp)

{!! $cp->description ?? '' !!}

@if($cp->price > $cp->current_price) Sale @endif
{{$cp->product_name ?? ''}} ${{$cp->current_price}}/{{$cp->weight??'0.00'}}G @if($cp->price > $cp->current_price) ${{$cp->price}} @endif
@empty @endforelse @endif
@endsection