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

Blog

@if(isset($blogs) && $blogs) @foreach($blogs as $blog)
{{$blog->name}}
{{date('d-m-Y',strtotime($blog->created_at))}}

{{$blog->name}}

{{$blog->meta_description}}
{{__('general.readmore')}}
@endforeach @endif
{{$blogs->links()}}

Kategoriler

@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