• {{ $product->title }}

    {{ $product->title }}

    {{--
    (5/4.9)
    --}}
    @if ($product->offer)

    {!! __('The price') !!} {!! $product->price !!}

    {!! $product->offer !!} {!! __('EGP') !!}
    {!! optional($product->unit)->title !!}

    @else
    {!! __('The price') !!}{!! $product->price !!} {!! __('EGP') !!}
    {!! optional($product->unit)->title !!}
    @endif @if ($product->stock > 0)

    {!! __('Availability now') !!}

    @else

    {!! __('Not available now') !!}

    @endif
    @if ($product->technical) {!! $product->technical !!} @else
    {!! Str::words(strip_tags($product->content), 20, ' ...')!!}
    @endif