@extends('layouts.index-layout') @section('content')
@if(count($data['banners'])>0)
@if(!empty($data['banners'])) @foreach($data['banners'] as $banner)
@endforeach @endif
@endif
@if(count($data['howitworks'])>0)
How it Works
{{$data['howitworks'][0]->title}}
{{$data['howitworks'][1]->title}}
{{$data['howitworks'][2]->title}}
@endif
@if(count($data['features'])>0)
Features and Benefits
@if(!empty($data['features']))
@foreach($data['features'] as $features)
{{$features->title}}
{{$features->content}}
@if($i%3!=0)
@endif
@endforeach
@endif
@endif
@if(count($data['reward'])>0)
@if(!empty($data['reward']))
{{$data['reward'][0]->title}}
{{$data['reward'][0]->content}}
@endif
@endif
@stop