@extends('layouts.app') @section('title','Home') @section('content')
{!! Form::open(['method'=>'POST','action' => 'WelcomeController@retail']) !!} {!! Form::close() !!}
{!! Form::open(['method'=>'POST','action' => 'WelcomeController@wholesale']) !!} {!! Form::close() !!}

OUR PRODUCTS

@foreach($categories as $category)

{{$category->name}}

@endforeach

FEATURED PRODUCTS

@foreach($products as $product)
@include('partials.singleProduct')
@endforeach

WHY CHOOSE US

100% NATURAL

Foods are not processed and ingredients are all came from natural products.

MADE FRESH

It's a commitment to provide delicious and fresh foods.

STAY HEALTHY

Maintaining good health doesn't happen by accident. It requires work, smart lifestyle choices and good choice of foods.

@endsection