@php $types = \App\Models\Ecommerce\ProductType::where('show_in_menu', 1)->orderBy('sorting')->limit(7)->get(); $search_products = \App\Models\Ecommerce\Product::with('supplier')->select('id','name','generic_name','price','discount','image','supplier_id','strength') ->latest()->take(20)->get(); @endphp