@extends('frontend.layouts.frontend_app') @section('content')

{{ __('pages.Latest Product') }}

{{ __('pages.View More') }}
@foreach ($latest_products as $lproduct) @include('frontend.components.product',['medicine' => $lproduct,'class' => '']) @endforeach
@foreach ($categoy_products as $category)

{{ $category->title }}

@foreach (\App\Models\Ecommerce\ProductType::product($category->id,6) as $medicine) @include('frontend.components.product',['medicine' => $medicine,'class' => '']) @endforeach
@if($category->banner)
@endif
@endforeach @endsection