@extends('layouts.master') @section('title',__('Landing Pages')) @section('breadcum') @endsection @section('maincontent')
{{ __('Create A Block') }}
{{__("Landing Pages")}}
@if ($landing_pages) @foreach ($landing_pages as $key => $block) @endforeach @endif
{{__('Image')}} {{__('Heading')}} {{__('Details')}} {{__('Button')}} {{__('Image Position')}} {{__('Actions')}}
{{$key+1}}
@if ($block->image != null) @endif {{$block->heading}} {{str_limit($block->detail, 50)}} @if ($block->button == 1) @if ($block->button_link == 'login') {{$block->button_text}} @elseif ($block->button_link == 'register') {{$block->button_text}} @endif @endif {{$block->left == 1 ? 'Left' : 'Right'}}
@endsection @section('script') @endsection