@extends('layout.app') @section('page-title', 'Teak Furniture Collections') @section('breadcrumb')
Home Collections
@endsection @section('content')
@foreach($collections as $key => $collection)
@if($key % 2 === 0)
Collection {{ $collection->name }}
{{ $collection->name }}
{{ $collection->short_description }}

{{ $collection->description }}

Collection {{ $collection->name }}
@else
Collection {{ $collection->name }}
{{ $collection->name }}
{{ $collection->short_description }}

{{ $collection->description }}

@endif
@endforeach
@endsection @push('after-foot-js') @endpush