@extends(config('mio.theme').'.app') @section('content')

{{$blog->name}}

{!! $blog->blog_content !!}

{{__('general.categories')}}

@foreach($products as $product) @php $checkDiscount = checkDiscount($product); if(!$checkDiscount){ $checkDiscount = 0; } @endphp
{{$product->name}}

{{$product->name}}

@if($checkDiscount)
{{pricemio($product)['price']}}
{{pricemio($product,1)['discountedPrice']}}
@else
{{pricemio($product)['price']}}
@endif
@endforeach
@endsection