| Current Path : /home/users/unlimited/www/dealnest.codeskitter.site/resources/views/seo_settings/ |
| Current File : /home/users/unlimited/www/dealnest.codeskitter.site/resources/views/seo_settings/index.blade.php |
@extends('layouts.main')
@section('title')
{{ __('SEO Settings') }}
@endsection
@section('page-title')
<div class="page-title">
<div class="row">
<div class="col-12 col-md-6 order-md-1 order-last">
<h4>@yield('title')</h4>
</div>
<div class="col-12 col-md-6 order-md-2 order-first">
</div>
</div>
</div>
@endsection
@section('content')
<section class="section">
<div class="row">
<div class="col-md-4">
<div class="card">
<div class="card-header">
<div class="divider">
<div class="divider-text">
<h4>{{ __('SEO Settings') }}</h4>
</div>
</div>
</div>
<div class="card-content">
<div class="card-body">
{!! Form::open(['url' => route('seo_settings.store'), 'data-parsley-validate', 'files' => true]) !!}
<div class=" row">
{{-- Pages --}}
<div class="col-md-12 col-sm-12 form-group mandatory">
{{ Form::label('page', __('Page'), ['class' => 'form-label text-center']) }}
<select name="page" id="" class="from-select form-control">
@foreach ($pages as $page)
@if (in_array($page, $seo_pages->toArray()))
<option value="{{ $page }}" disabled>{{ $page }}</option>
@else
<option value="{{ $page }}">{{ $page }}</option>
@endif
@endforeach
</select>
</div>
{{-- Title --}}
<div class="col-md-12 col-sm-12 form-group mandatory">
{{ Form::label('title', __('Title'), ['class' => 'form-label text-center']) }}
<input type="text" name="meta_title" class="form-control" id="meta_title" oninput="getWordCount('meta_title','meta_title_count','19.9px arial')" placeholder="{{ __('Title') }}" required>
<h6 id="meta_title_count">0</h6>
</div>
{{-- Description --}}
<div class="col-md-12 col-sm-12 form-group mandatory">
{{ Form::label('description', __('Description'), ['class' => 'form-label text-center']) }}
<textarea id="meta_description" name="meta_description" class="form-control" oninput="getWordCount('meta_description','meta_description_count','12.9px arial')" required placeholder="{{ __('Description') }}"></textarea>
<h6 id="meta_description_count">0</h6>
</div>
{{-- Keywords --}}
<div class="col-md-12 col-sm-12 form-group mandatory">
{{ Form::label('keywords', __('Keywords'), ['class' => 'form-label text-center']) }}
<textarea name="keywords" id="" class="form-control" required placeholder="{{ __('Keywords') }}"></textarea>
</div>
{{-- Image --}}
<div class="col-md-12 col-sm-12 form-group mandatory">
{{ Form::label('image', __('Image'), ['class' => 'form-label text-center']) }}
{{ Form::file('image', ['class' => 'filepond form-control', 'required' => 'true', 'accept' => 'image/*']) }}
</div>
{{-- Save --}}
<div class="col-sm-2 justify-content-end" style="margin-top:2%;">
{{ Form::submit(trans('Save'), ['class' => 'btn btn-primary me-1 mb-1']) }}
</div>
</div>
{!! Form::close() !!}
</div>
</div>
</div>
</div>
<div class="col-md-8">
<div class="card">
<div class="card-body">
<table class="table table-striped"
id="table_list" data-toggle="table" data-url="{{ route('seo_settings.show', 1) }}"
data-click-to-select="true" data-responsive="true" data-side-pagination="server"
data-pagination="true" data-page-list="[5, 10, 20, 50, 100, 200]" data-search="true"
data-toolbar="#toolbar" data-fixed-number="1" data-fixed-right-number="1"
data-trim-on-search="false" data-sort-name="id" data-sort-order="desc"
data-pagination-successively-size="3" data-query-params="queryParams">
<thead class="thead-dark">
<tr>
<th scope="col" data-field="id" data-sortable="true" data-align="center"> {{ __('ID') }}</th>
<th scope="col" data-field="image" data-sortable="false" data-formatter="imageFormatter" data-align="center"> {{ __('Image') }} </th>
<th scope="col" data-field="page" data-sortable="true" data-align="center"> {{ __('Page') }} </th>
<th scope="col" data-field="title" data-sortable="true" data-align="center"> {{ __('Title') }}</th>
<th scope="col" data-field="description" data-sortable="false" data-align="center"> {{ __('Description') }} </th>
<th scope="col" data-field="operate" data-sortable="false" data-align="center" data-events="actionEvents"> {{ __('Action') }}</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<!-- EDIT MODEL MODEL -->
<div id="editModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel1"
aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header">
<h6 class="modal-title" id="myModalLabel1">{{ __('Edit SEO Settings') }}</h6>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
{!! Form::open(['url' => route('seo_settings.update', 1), 'data-parsley-validate', 'files' => true]) !!}
@method('PUT')
<div class="modal-body">
<div class=" row">
{{-- Edit Page --}}
<div class="col-md-6 col-sm-12 form-group mandatory">
{{ Form::label('page', __('Page'), ['class' => 'form-label text-center']) }}
{{ Form::text('edit_page', '', [
'class' => 'form-control',
'placeholder' => __('Page'),
'id' => 'edit_page_show',
'disabled' => true,
'data-parsley-required' => 'true',
]) }}
{!! Form::hidden('edit_page', '', ['id' => 'edit_page']) !!}
</div>
{{-- Edit Title --}}
<div class="col-md-6 col-sm-12 form-group mandatory">
{{ Form::label('title', __('Title'), ['class' => 'form-label text-center']) }}
<input type="text" name="edit_meta_title" class="form-control" id="edit_meta_title" oninput="getWordCount('edit_meta_title','edit_meta_title_count','19.9px arial')" placeholder="{{ __('Title') }}" required>
<h6 id="edit_meta_title_count">0</h6>
</div>
{{-- Edit Keywords --}}
<div class="col-md-6 col-sm-12 form-group mandatory">
{{ Form::label('keywords', __('Keywords'), ['class' => 'form-label text-center']) }}
<textarea name="edit_keywords" id="edit_keywords" class="form-control" placeholder="{{ __('Keywords') }}"></textarea>
</div>
{{-- Edit Description --}}
<div class="col-md-6 col-sm-12 form-group mandatory">
{{ Form::label('description', __('Description'), ['class' => 'form-label text-center']) }}
<textarea id="edit_meta_description" name="edit_meta_description" class="form-control" oninput="getWordCount('edit_meta_description','edit_meta_description_count','12.9px arial')" placeholder="{{ __('Description') }}"></textarea>
<h6 id="edit_meta_description_count">0</h6>
</div>
{{-- Edit Image --}}
<div class="col-md-6 col-sm-12 form-group mandatory">
{{ Form::label('image', __('Image'), ['class' => 'form-label text-center']) }}
{{ Form::file('edit_image', ['class' => 'form-control filepond', 'data-parsley-required' => 'true', 'accept' => 'image/*']) }}
</div>
<div class="col-md-6 col-sm-12 mt-4">
<img src="" alt="OG_Image" class="mt-2" id="meta_img" height="100px" width="100px">
</div>
</div>
{{-- Edit ID --}}
<input type="hidden" name="edit_id" id="edit_id">
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary waves-effect" data-bs-dismiss="modal">{{ __('Close') }}</button>
<button type="submit" class="btn btn-primary waves-effect waves-light">{{ __('Save') }}</button>
</div>
{!! Form::close() !!}
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal-dialog -->
</div>
<!-- EDIT MODEL -->
</section>
@endsection
@section('script')
<script>
$(document).ready(function() {
getWordCount("meta_title", "meta_title_count", "19.9px arial");
getWordCount("meta_description", "meta_description_count", "12.9px arial");
getWordCount("edit_meta_title", "edit_meta_title_count", "19.9px arial");
getWordCount(
"edit_meta_description",
"edit_meta_description_count",
"12.9px arial"
);
});
window.actionEvents = {
'click .edit_btn': function(e, value, row, index) {
$('#edit_id').val(row.id);
$('#edit_page_show').val(row.page);
$('#edit_page').val(row.page);
$('#edit_meta_title').val(row.title);
$('#edit_meta_description').val(row.description);
$('#edit_keywords').val(row.keywords);
$('#meta_img').attr('src', row.img_url);
getWordCount('edit_meta_description', 'edit_meta_description_count', '12.9px arial');
getWordCount('edit_meta_title', 'edit_meta_title_count', '19.9px arial');
}
}
function queryParams(p) {
return {
sort: p.sort,
order: p.order,
offset: p.offset,
limit: p.limit,
search: p.search,
};
}
</script>
@endsection