@extends('layouts.admin') @section('page-title') {{ __('Landing Page') }} @endsection @section('breadcrumb') @endsection @push('css-page') @endpush @php $settings = \Modules\LandingPage\Entities\LandingPageSetting::settings(); $logo=\App\Models\Utility::get_file('uploads/landing_page_image'); @endphp @push('custom-scripts') @endpush @section('breadcrumb') @endsection @section('content')
@include('landingpage::layouts.tab')
{{-- Start for all settings tab --}}
{{ Form::open(array('route' => 'discover.store', 'method'=>'post', 'enctype' => "multipart/form-data")) }} @csrf
{{ __('Discover') }}
{{ Form::label('Heading', __('Heading'), ['class' => 'form-label']) }} {{ Form::text('discover_heading',$settings['discover_heading'], ['class' => 'form-control ', 'placeholder' => __('Enter Heading')]) }} @error('mail_host') {{ $message }} @enderror
{{ Form::label('Description', __('Description'), ['class' => 'form-label']) }} {{ Form::text('discover_description', $settings['discover_description'], ['class' => 'form-control', 'placeholder' => __('Enter Description')]) }} @error('mail_port') {{ $message }} @enderror
{{ Form::label('Live Demo Link', __('Live Demo Link'), ['class' => 'form-label']) }} {{ Form::text('discover_live_demo_link', $settings['discover_live_demo_link'], ['class' => 'form-control', 'placeholder' => __('Enter Link')]) }} @error('discover_live_demo_link') {{ $message }} @enderror
{{ Form::label('Buy Now Link', __('Buy Now Link'), ['class' => 'form-label']) }} {{ Form::text('discover_buy_now_link', $settings['discover_buy_now_link'], ['class' => 'form-control', 'placeholder' => __('Enter Link')]) }} @error('discover_buy_now_link') {{ $message }} @enderror
{{ Form::close() }}
{{ __('Discover List') }}
{{-- --}}
@if (is_array($discover_of_features) || is_object($discover_of_features)) @php $no = 1 @endphp @foreach ($discover_of_features as $key => $value) @endforeach @endif
{{__('No')}} {{__('Name')}} {{__('Action')}}
{{ $no++ }} {{ $value['discover_heading'] }}
{!! Form::open([ 'method' => 'GET', 'route' => ['discover_delete', $key], 'id' => 'delete-form-' . $key, ]) !!} {!! Form::close() !!}
{{-- End for all settings tab --}}
@endsection