@extends('core::layouts.app') @section('title', __('My Landing Pages')) @section('content')

@lang('My Landing Pages')

@if($data->count() > 0)
@foreach($data as $item) @endforeach
@lang('Name') @lang('Type') @lang('Publish') @lang('Domain') @lang('Leads') @lang('Settings') @lang('Action')
{{ $item->name }} @if(isset($item->template->name)) {{$item->template->name}} @else @lang('None') @endif @if($item->is_publish) @lang('Published') @else @lang('Not publish') @endif @if($item->domain_type == 0) {{$item->sub_domain}} @elseif($item->domain_type == 1) {{$item->custom_domain}} @endif {{$item->formdata->count()}} @lang('leads') @lang('Setting')
@endif
{{ $data->appends( Request::all() )->links() }}
@if($data->count() == 0)

@lang('No Landing Page Found')

@lang("You don't have any Landing Page").

@lang('New Landing Page')
@endif
@stop