ayarlar.blade.php
| 150.8 KB | Satir:
0
| php
Geri
@extends('backend.app') @section("content") <div class="content-header row"> <div class="content-header-left col-md-6 col-12 mb-1 breadcrumb-new"> <h3 class="content-header-title mb-0 d-block">Site Ayarları</h3> <div class="row breadcrumbs-top d-inline-block"> <div class="breadcrumb-wrapper col-12"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="{{url('panel')}}">Anasayfa</a> </li> <li class="breadcrumb-item active">Ayarlar </li> </ol> </div> </div> </div> <div class="content-header-right col-md-6 col-12"> <div class="dropdown float-md-right"> <a href="{{url('panel')}}" class="btn btn-dark round btn-glow px-2">Geri Dön</a> </div> </div> </div> <div class="content-body"> <!-- son eklenen haberler 10 tane --> <div class="row"> <div id="recent-sales" class="col-12 col-md-12"> <div class="card"> <div class="card-content"> <form class="form form-horizontal row-separator" action="{{route('panel.ayarlar.kaydet')}}" method="POST" enctype="multipart/form-data"> @csrf <div class="form-body"> <div class="card-body"> <ul class="nav nav-tabs nav-topline"> <li class="nav-item"> <a class="nav-link active" id="base-genel" data-toggle="tab" aria-controls="genel" href="#genel" aria-expanded="true">Genel</a> </li> <li class="nav-item"> <a class="nav-link" id="base-ozel" data-toggle="tab" aria-controls="ozel" href="#ozel" aria-expanded="false">Özel Ayarlar</a> </li> <li class="nav-item"> <a class="nav-link" id="base-tema" data-toggle="tab" aria-controls="tema" href="#tema" aria-expanded="false">Tema Ayarları</a> </li> <li class="nav-item"> <a class="nav-link" id="base-logolar" data-toggle="tab" aria-controls="logolar" href="#logolar" aria-expanded="false">Logo</a> </li> <li class="nav-item"> <a class="nav-link" id="base-reklamlar" data-toggle="tab" aria-controls="reklamlar" href="#reklamlar" aria-expanded="false">Reklamlar</a> </li> <li class="nav-item"> <a class="nav-link" id="base-bloklar" data-toggle="tab" aria-controls="bloklar" href="#bloklar" aria-expanded="false">Modüller</a> </li> <li class="nav-item"> <a class="nav-link" id="base-limitler" data-toggle="tab" aria-controls="limitler" href="#limitler" aria-expanded="false">Limitler</a> </li> <li class="nav-item"> <a class="nav-link" id="base-ajanslar" data-toggle="tab" aria-controls="ajanslar" href="#ajanslar" aria-expanded="false">Ajanslar</a> </li> <li class="nav-item"> <a class="nav-link" id="base-sosyal" data-toggle="tab" aria-controls="sosyal" href="#sosyal" aria-expanded="false">Sosyal Ağlar</a> </li> <li class="nav-item"> <a class="nav-link" id="base-kod" data-toggle="tab" aria-controls="kod" href="#kod" aria-expanded="false">Kod Alanları</a> </li> </ul> <div class="tab-content px-1 pt-1 border-grey border-lighten-2 border-0-top"> @if ($errors->any()) <div class="alert alert-danger"> @foreach ($errors->all() as $error) <p class="mb-0">{{ $error }}</p> @endforeach </div> @endif <div role="tabpanel" class="tab-pane active" id="genel" aria-expanded="true" aria-labelledby="base-genel"> <div class="form-group row"> <label class="col-md-3 label-control" for="siteadresi">Lisanslı Domain:</label> <div class="col-md-9"> <input type="text" id="siteadresi" class="form-control" name="siteadresi" readonly value="{{$setting->siteadresi}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="baslik">Site Başlık <span class="text-danger">*</span>:</label> <div class="col-md-9"> <input type="text" id="baslik" class="form-control" name="baslik" required value="{{$setting->baslik}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="seodesc">SEO Açıklama <span class="text-danger">*</span>:</label> <div class="col-md-9"> <textarea id="seodesc" rows="3" class="form-control" name="seodesc" required>{{$setting->seodesc}}</textarea> <small class="text-muted">SEO açıklaması Google için çok önemlidir. 160 karakteri geçmemeniz önerilir.</small> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="seokeyw">SEO Etiketler:</label> <div class="col-md-9"> <textarea id="seokeyw" rows="3" class="form-control" name="seokeyw">{{$setting->seokeyw}}</textarea> <small class="text-muted">SEO için sitenizi anlatan kelimelerin arasına "," virgül koyarak gririniz.</small> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="copyright">Site Copyright:</label> <div class="col-md-9"> <input type="text" id="copyright" class="form-control" name="copyright" value="{{$setting->copyright}}"> <small class="text-muted">Sitenizin en altında görünecek olan yazıdır.</small> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">WWW Yönlendirmesi: <i class="la la-info-circle" data-toggle="tooltip" title="Bu ayar açık olursa site adresi http://siteadi.com'dan http://www.siteadi.com'a yönlenir."></i></label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="www" id="www1" value="1" @if ($setting->www == 1){{'checked'}} @endif > <label for="www1">Evet, olsun.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="www" id="www0" value="0" @if ($setting->www == 0){{'checked'}} @endif> <label for="www0">Hayır, olmasın.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">SSL Sertifikası: <i class="la la-info-circle" data-toggle="tooltip" title="Eğer sitenize ait SSL sertifikası varsa işaretleyiniz."></i></label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="ssl" id="ssl1" value="1" @if ($setting->ssl == 1){{'checked'}} @endif> <label for="ssl1">Evet, var.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="ssl" id="ssl0" value="0" @if ($setting->ssl == 0){{'checked'}} @endif> <label for="ssl0">Hayır, yok.</label> </fieldset> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="eposta">E-Posta Adresi:</label> <div class="col-md-9"> <input type="email" id="eposta" class="form-control" name="eposta" value="{{$setting->eposta}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="tel">Telefon:</label> <div class="col-md-9"> <input type="text" id="tel" class="form-control" name="tel" value="{{$setting->tel}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="whatsapp">WhatsApp İhbar Hattı:</label> <div class="col-md-9"> <input type="text" id="whatsapp" class="form-control" name="whatsapp" value="{{$setting->whatsapp}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="faks">Faks:</label> <div class="col-md-9"> <input type="text" id="faks" class="form-control" name="faks" value="{{$setting->faks}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="sehir">Şehir:</label> <div class="col-md-5"> <select id="sehir" name="sehir" class="form-control"> <option disabled>Şehir Seçiniz</option> @foreach($cities as $city) <option @if($city->id == $setting->sehir){{'selected'}}@endif value="{{$city->id}}">{{$city->il_adi}}</option> @endforeach </select> <small class="text-muted">Seçtiğiniz şehir hava durumu ve namaz durumu içinde geçerli olacaktır.</small> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="adres">Adres:</label> <div class="col-md-9"> <textarea id="adres" rows="3" class="form-control" name="adres">{{$setting->adres}}</textarea> </div> </div> </div> <div class="tab-pane" id="ozel" aria-labelledby="base-ozel"> <div class="form-group row"> <label class="col-md-3 label-control" for="yenileme">Yenileme Süresi: <i class="la la-info-circle" data-toggle="tooltip" title="Siteyi belirttiğiniz dakika bazında yenileme yapar."></i></label> <div class="col-md-9"> <input type="text" id="yenileme" name="yenileme" value="{{$setting->yenileme}}" /> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="cdn">CDN Hizmeti:</label> <div class="col-md-9"> <input type="text" id="cdn" class="form-control" name="cdn" value="{{$setting->cdn}}"> <small class="text-muted">Eğer CDN hizmetiniz varsa CDN adresinizi bu alana giriniz. Yoksa boş bırakınız.</small> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Okunma Sayılarını Göster:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="okunma" id="okunma1" value="1" @if ($setting->okunma == 1){{'checked'}} @endif> <label for="okunma1">Evet</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="okunma" id="okunma0" value="0" @if ($setting->okunma == 0){{'checked'}} @endif> <label for="okunma0">Hayır</label> </div> </div> </div> <div class="form-group row skin skin-flat d-none"> <label class="col-md-3 label-control">Mobilde Masaüstü Site Linki:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="anasite" id="anasite1" value="1" @if ($setting->anasite == 1){{'checked'}} @endif> <label for="anasite1">Evet, olsun.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="anasite" id="anasite0" value="0" @if ($setting->anasite == 0){{'checked'}} @endif> <label for="anasite0">Hayır, olmasın.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat d-none"> <label class="col-md-3 label-control">Mobil Siteye Yönlendirme: <i class="la la-info-circle" data-toggle="tooltip" title="Mobil cihazlardan siteye girişlerde mobil temaya geçilsin mi?"></i></label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="mobilsite" id="mobilsite1" value="1" @if ($setting->mobilsite == 1){{'checked'}} @endif> <label for="mobilsite1">Evet, olsun.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="mobilsite" id="mobilsite0" value="0" @if ($setting->mobilsite == 0){{'checked'}} @endif> <label for="mobilsite0">Hayır, olmasın.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Haberleri Yeni Sekmede Aç:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="yenisekme" id="yenisekme1" value="1" @if ($setting->yenisekme == 1){{'checked'}} @endif> <label for="yenisekme1">Evet</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="yenisekme" id="yenisekme0" value="0" @if ($setting->yenisekme == 0){{'checked'}} @endif> <label for="yenisekme0">Hayır</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Mouse Sağ Tuş Yasağı:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="sagtus" id="sagtus1" value="1" @if ($setting->sagtus == 1){{'checked'}} @endif> <label for="sagtus1">Evet</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="sagtus" id="sagtus0" value="0" @if ($setting->sagtus == 0){{'checked'}} @endif> <label for="sagtus0">Hayır</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Editörün Ekledikleri:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="editoronay" id="editoronay1" value="1" @if ($setting->editoronay == 1){{'checked'}} @endif> <label for="editoronay1">Hemen onaylansın.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="editoronay" id="editoronay0" value="0" @if ($setting->editoronay == 0){{'checked'}} @endif> <label for="editoronay0">Hayır onaylanmasın.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Yazarların Ekledikleri:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="yazaronay" id="yazaronay1" value="1" @if ($setting->yazaronay == 1){{'checked'}} @endif> <label for="yazaronay1">Hemen onaylansın.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="yazaronay" id="yazaronay0" value="0" @if ($setting->yazaronay == 0){{'checked'}} @endif> <label for="yazaronay0">Hayır onaylanmasın.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Emoji Oylama:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="emoji" id="emoji1" value="1" @if ($setting->emoji == 1){{'checked'}} @endif> <label for="emoji1">Evet</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="emoji" id="emoji0" value="0" @if ($setting->emoji == 0){{'checked'}} @endif> <label for="emoji0">Hayır</label> </fieldset> </div> </div> </div> <div class="tab-pane" id="tema" aria-labelledby="base-tema"> <div class="form-group row d-none"> <label class="col-md-3 label-control" for="mansety">Normal Manşet Yüksekliği:</label> <div class="col-md-9"> <input type="number" id="mansety" class="form-control" name="mansety" value="{{$setting->mansety}}"> <small class="text-muted">Normal manşetteki fotoğrafın sistem tarafından otomatik kırpılacak yüksekliği px değerinden giriniz.</small> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="yataymansety">Büyük Manşet Yüksekliği:</label> <div class="col-md-9"> <input type="number" id="yataymansety" class="form-control" name="yataymansety" value="{{$setting->yataymansety}}"> <small class="text-muted">Buyuk manşetteki fotoğrafın sistem tarafından otomatik kırpılacak yüksekliği px değerinden giriniz.</small> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Onemsoft API Servisleri: <i class="la la-info-circle" data-toggle="tooltip" title="Onemsoft üzerinden çekilen döviz, lig, hava durumu ve namaz vakitleri gibi servislerin geçici olarak kapanması halinde sitenin performansının etkilenmemesi için bu ayarı kapalı konuma getirilebilirsiniz."></i></label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="api" id="api1" value="1" @if ($setting->api == 1){{'checked'}} @endif> <label for="api1">Açık</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="api" id="api0" value="0" @if ($setting->api == 0){{'checked'}} @endif> <label for="api0">Kapalı</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Sürekli Haber Geçişi: <i class="la la-info-circle" data-toggle="tooltip" title="Haberin detayında iken sayfanın aşağısına indikçe sonraki haberin anlık yüklenmesi özelliğidir."></i></label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="sonrakihaber" id="sonrakihaber1" value="1" @if ($setting->sonrakihaber == 1){{'checked'}} @endif> <label for="sonrakihaber1">Aktif</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="sonrakihaber" id="sonrakihaber0" value="0" @if ($setting->sonrakihaber == 0){{'checked'}} @endif> <label for="sonrakihaber0">Pasif</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Haber Detayı Sonunda Normal Manşeti Göster:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="detaymanset" id="detaymanset1" value="1" @if ($setting->detaymanset == 1){{'checked'}} @endif> <label for="detaymanset1">Evet, gösterilsin.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="detaymanset" id="detaymanset0" value="0" @if ($setting->detaymanset == 0){{'checked'}} @endif> <label for="detaymanset0">Hayır, gösterilmesin.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Haberin Editörünü Göster:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="editor" id="editor1" value="1" @if ($setting->editor == 1){{'checked'}} @endif> <label for="editor1">Evet, gösterilsin.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="editor" id="editor0" value="0" @if ($setting->editor == 0){{'checked'}} @endif> <label for="editor0">Hayır, gösterilmesin.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat d-none"> <label class="col-md-3 label-control">Benzer Haberleri Göster:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="benzer" id="benzer1" value="1" @if ($setting->benzer == 1){{'checked'}} @endif> <label for="benzer1">Evet, gösterilsin.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="benzer" id="benzer0" value="0" @if ($setting->benzer == 0){{'checked'}} @endif> <label for="benzer0">Hayır, gösterilmesin.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">AMP Özelliği: <i class="la la-info-circle" data-toggle="tooltip" title="Google Hızlandırılmış Mobil Sayfalar (AMP) mobilde sayfaların çok hızlı yüklenip açılmasını sağlar. Sadece haber ve makaleler için geçerlidir."></i></label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="amp" id="amp1" value="1" @if ($setting->amp == 1){{'checked'}} @endif> <label for="amp1">Aktif</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="amp" id="amp0" value="0" @if ($setting->amp == 0){{'checked'}} @endif> <label for="amp0">Pasif</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Menüde Yazarlar Linki:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="yazarlarmenu" id="yazarlar1" value="1" @if ($setting->yazarlarmenu == 1){{'checked'}} @endif> <label for="yazarlar1">Evet, gösterilsin.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="yazarlarmenu" id="yazarlar0" value="0" @if ($setting->yazarlarmenu == 0){{'checked'}} @endif> <label for="yazarlar0">Hayır, gösterilmesin.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Menüde Galeri Linki:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="galerilinki" id="galerilinki1" value="1" @if ($setting->galerilinki == 1){{'checked'}} @endif> <label for="galerilinki1">Evet, gösterilsin.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="galerilinki" id="galerilinki0" value="0" @if ($setting->galerilinki == 0){{'checked'}} @endif> <label for="galerilinki0">Hayır, gösterilmesin.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Menüde Web TV Linki:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="webtvlinki" id="webtv1" value="1" @if ($setting->webtvlinki == 1){{'checked'}} @endif> <label for="webtv1">Evet, gösterilsin.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="webtvlinki" id="webtv0" value="0" @if ($setting->webtvlinki == 0){{'checked'}} @endif> <label for="webtv0">Hayır, gösterilmesin.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Menüde Anket Linki:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="anketlinki" id="anket1" value="1" @if ($setting->anketlinki == 1){{'checked'}} @endif> <label for="anket1">Evet, gösterilsin.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="anketlinki" id="anket0" value="0" @if ($setting->anketlinki == 0){{'checked'}} @endif> <label for="anket0">Hayır, gösterilmesin.</label> </fieldset> </div> </div> <br/> <h4 class="form-section"><i class="la la-eyedropper"></i> Renk Ayarları</h4> <div class="form-group row"> <label id="bgcolor" class="col-md-3 label-control">Genel Arkaplan Rengi:</label> <div class="col-md-5"> <input type="text" id="bgcolor" name="bgcolor" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->bgcolor}}"> </div> </div> <div class="form-group row"> <label for="menubar" class="col-md-3 label-control">Menü Bar Arkaplan Rengi:</label> <div class="col-md-5"> <input type="text" id="menubar" name="menubar" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->menubar}}"> </div> </div> <div class="form-group row"> <label for="menubarlink" class="col-md-3 label-control">Menü Bar Link Rengi:</label> <div class="col-md-5"> <input type="text" id="menubarlink" name="menubarlink" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->menubarlink}}"> </div> </div> <div class="form-group row"> <label for="menubarhoverlink" class="col-md-3 label-control">Menü Bar Hover Link Rengi: <i class="la la-info-circle" data-toggle="tooltip" title="Menünün üzerine gelince oluşacak link rengidir."></i></label> <div class="col-md-5"> <input type="text" id="menubarhoverlink" name="menubarhoverlink" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->menubarhoverlink}}"> </div> </div> <div class="form-group row"> <label for="headerust" class="col-md-3 label-control">Ust Bar Arkaplan Rengi:</label> <div class="col-md-5"> <input type="text" id="headerust" name="headerust" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->headerust}}"> </div> </div> <div class="form-group row"> <label for="headeryazi" class="col-md-3 label-control">Ust Bar Link Rengi:</label> <div class="col-md-5"> <input type="text" id="headeryazi" name="headeryazi" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->headeryazi}}"> </div> </div> <div class="form-group row"> <label for="headerlink" class="col-md-3 label-control">Ust Bar Hover Link Rengi:</label> <div class="col-md-5"> <input type="text" id="headerlink" name="headerlink" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->headerlink}}"> </div> </div> <div class="form-group row"> <label for="footerbg" class="col-md-3 label-control">Site Altı (Footer) Arkaplan Rengi: <i class="la la-info-circle" data-toggle="tooltip" title="Sitenin en altında bulunan alanın arkaplan rengidir."></i></label> <div class="col-md-5"> <input type="text" id="footerbg" name="footerbg" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->footerbg}}"> </div> </div> <div class="form-group row"> <label for="footeryazi" class="col-md-3 label-control">Site Altı (Footer) Link Rengi:</label> <div class="col-md-5"> <input type="text" id="footeryazi" name="footeryazi" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->footeryazi}}"> </div> </div> <div class="form-group row"> <label for="footerlink" class="col-md-3 label-control">Site Altı (Footer) Hover Link Rengi:</label> <div class="col-md-5"> <input type="text" id="footerlink" name="footerlink" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->footerlink}}"> </div> </div> <div class="form-group row d-none"> <label for="uygulama_icon_renk" class="col-md-3 label-control">Mobil Uygulama İkon Rengi:</label> <div class="col-md-5"> <input id="uygulama_icon_renk" type="text" name="uygulama_icon_renk" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->uygulama_icon_renk}}"> </div> </div> <div class="form-group row d-none"> <label for="uygulama_renk" class="col-md-3 label-control">Mobil Uygulama Üst Rengi:</label> <div class="col-md-5"> <input id="uygulama_renk" type="text" name="uygulama_renk" autocomplete="off" class="form-control minicolors" data-control="hue" value="{{$setting->uygulama_renk}}"> </div> </div> </div> <div class="tab-pane" id="logolar" aria-labelledby="base-logolar"> <div class="form-group row"> <label class="col-md-3 label-control" for="logo">Site Logosu: <i class="la la-info-circle" data-toggle="tooltip" title="Logo ölçüsü 240x90px olarak yükleyiniz."></i></label> <div class="col-md-5"> <input type="file" class="filestyle" id="logo" name="logo"> @if($setting->logo) <img class="img-fluid mt-1" src="{{url('images/genel/'.$setting->logo)}}" alt="logo"> @endif </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="favicon">Favicon: <i class="la la-info-circle" data-toggle="tooltip" title="Web adresinizin başında yer alan küçük simgedir. 48x48px tavsiye edilir."></i></label> <div class="col-md-5"> <input type="file" class="filestyle" id="favicon" name="favicon"> @if($setting->favicon) <img class="img-fluid mt-1" src="{{url('images/genel/'.$setting->favicon)}}" alt="favicon"> @endif </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="resimsiz">Varsayılan Haber Fotosu: <i class="la la-info-circle" data-toggle="tooltip" title="Haberin fotusu yoksa onun yerine gösterilecek varsayılan fotoğraftır."></i></label> <div class="col-md-5"> <input type="file" class="filestyle" id="resimsiz" name="resimsiz"> @if($setting->resimsiz) <img class="img-fluid mt-1" src="{{url('images/genel/'.$setting->resimsiz)}}" alt="varsayılan resim"> @endif </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="watermark">Filigran Logo: <i class="la la-info-circle" data-toggle="tooltip" title="Filigran logo PNG formatında ve arkası transparan olmalıdır. Haber fotosunun üzerine otomatik eklenir."></i></label> <div class="col-md-5"> <input type="file" class="filestyle" id="watermark" name="watermark"> @if($setting->watermark) <img class="img-fluid mt-1" src="{{url('images/genel/'.$setting->watermark)}}" alt="watermark"> @endif </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Filigran Pozisyonu:</label> <div class="col-md-9"> <fieldset class="d-inline-block"> <input type="radio" name="watermakpoz" id="watermyok" value="0" @if ($setting->watermakpoz == 0){{'checked'}} @endif> <label for="watermyok">Yok</label> </fieldset> <fieldset class="d-inline-block ml-1"> <input type="radio" name="watermakpoz" id="sagalt" value="1" @if ($setting->watermakpoz == 1){{'checked'}} @endif> <label for="sagalt">Sağ Alt</label> </fieldset> <fieldset class="d-inline-block ml-1"> <input type="radio" name="watermakpoz" id="solalt" value="2" @if ($setting->watermakpoz == 2){{'checked'}} @endif> <label for="solalt">Sol Alt</label> </fieldset> <fieldset class="d-inline-block ml-1"> <input type="radio" name="watermakpoz" id="sagust" value="3" @if ($setting->watermakpoz == 3){{'checked'}} @endif> <label for="sagust">Sağ Üst</label> </fieldset> <fieldset class="d-inline-block ml-1"> <input type="radio" name="watermakpoz" id="solust" value="4" @if ($setting->watermakpoz == 4){{'checked'}} @endif> <label for="solust">Sol Üst</label> </fieldset> <fieldset class="d-inline-block ml-1"> <input type="radio" name="watermakpoz" id="orta" value="5" @if ($setting->watermakpoz == 5){{'checked'}} @endif> <label for="orta">Orta</label> </fieldset> </div> </div> </div> <div class="tab-pane" id="reklamlar" aria-labelledby="base-reklamlar"> <div class="form-group row"> <label class="col-md-3 label-control" for="saniyeli_reklam_cache">8 Saniye Reklam Yenilenme Süresi: <i class="la la-info-circle" data-toggle="tooltip" title="İlk açılıştaki 8 sn. reklamın kaç saat sonra tekrar kullanıcıya görüneceğini belirler."></i></label> <div class="col-md-9"> <input type="text" id="saniyeli_reklam_cache" name="saniyeli_reklam_cache" value="{{$setting->saniyeli_reklam_cache}}" /> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="popup_reklam_cache">Popup Reklam Görüntülenme Aralığı: <i class="la la-info-circle" data-toggle="tooltip" title="Popup açılır reklamın kaç saatte bir gösterileceğini buradan belirleyebilirsiniz."></i></label> <div class="col-md-9"> <input type="text" id="popup_reklam_cache" name="popup_reklam_cache" value="{{$setting->popup_reklam_cache}}" /> </div> </div> <div class="form-group row d-none"> <label class="col-md-3 label-control" for="admob_banner">Admob Banner Kodu: <i class="la la-info-circle" data-toggle="tooltip" title="Eğer Admob hesabınız varsa banner olarak oluşturduğunuz reklam kodunu buraya yazınız."></i></label> <div class="col-md-5"> <input class="form-control" type="text" id="admob_banner" name="admob_banner" value="{{$setting->admob_banner}}" /> </div> </div> <div class="form-group row d-none"> <label class="col-md-3 label-control" for="admob_interstitial">Admob Interstitial Kodu: <i class="la la-info-circle" data-toggle="tooltip" title="Eğer Admob hesabınız varsa interstitial olarak oluşturduğunuz reklam kodunu buraya yazınız."></i></label> <div class="col-md-5"> <input class="form-control" type="text" id="admob_interstitial" name="admob_interstitial" value="{{$setting->admob_interstitial}}" /> </div> </div> </div> <div class="tab-pane" id="bloklar" aria-labelledby="base-bloklar"> <h4 class="form-section"><i class="ft-grid"></i> Anasayfa Modülleri</h4> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Normal Manşet:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="normalmanset" id="normalmanset1" value="1" @if ($setting->normalmanset == 1){{'checked'}} @endif> <label for="normalmanset1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="normalmanset" id="normalmanset0" value="0" @if ($setting->normalmanset == 0){{'checked'}} @endif> <label for="normalmanset0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Büyük Manşet:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="yataymanset" id="yataymanset1" value="1" @if ($setting->yataymanset == 1){{'checked'}} @endif> <label for="yataymanset1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="yataymanset" id="yataymanset0" value="0" @if ($setting->yataymanset == 0){{'checked'}} @endif> <label for="yataymanset0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Spot (Sür Manşet):</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="spotmanset" id="spotmanset1" value="1" @if ($setting->spotmanset == 1){{'checked'}} @endif> <label for="spotmanset1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="spotmanset" id="spotmanset0" value="0" @if ($setting->spotmanset == 0){{'checked'}} @endif> <label for="spotmanset0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Foto Galeri:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="fotogaleri" id="fotogaleri1" value="1" @if ($setting->fotogaleri == 1){{'checked'}} @endif> <label for="fotogaleri1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="fotogaleri" id="fotogaleri0" value="0" @if ($setting->fotogaleri == 0){{'checked'}} @endif> <label for="fotogaleri0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Video Galeri:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="videogaleri" id="videogaleri1" value="1" @if ($setting->videogaleri == 1){{'checked'}} @endif> <label for="videogaleri1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="videogaleri" id="videogaleri0" value="0" @if ($setting->videogaleri == 0){{'checked'}} @endif> <label for="videogaleri0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Şehir Haberleri Listesi: <i class="la la-info-circle" data-toggle="tooltip" title="Anasayfada en altta yerel haberlerin listelenmesini istiyorsanız aktif yapınız."></i></label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="yerelhaber" id="yerelhaber1" value="1" @if ($setting->yerelhaber == 1){{'checked'}} @endif> <label for="yerelhaber1">Evet, gösterilsin.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="yerelhaber" id="yerelhaber0" value="0" @if ($setting->yerelhaber == 0){{'checked'}} @endif> <label for="yerelhaber0">Hayır, gösterilmesin.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat d-none"> <label class="col-md-3 label-control">Gündem Haberleri:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="gundemhaber" id="gundemhaber1" value="1" @if ($setting->gundemhaber == 1){{'checked'}} @endif> <label for="gundemhaber1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="gundemhaber" id="gundemhaber0" value="0" @if ($setting->gundemhaber == 0){{'checked'}} @endif> <label for="gundemhaber0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat d-none"> <label class="col-md-3 label-control">Spor Haberleri:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="sporhaber" id="sporhaber1" value="1" @if ($setting->sporhaber == 1){{'checked'}} @endif> <label for="sporhaber1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="sporhaber" id="sporhaber0" value="0" @if ($setting->sporhaber == 0){{'checked'}} @endif> <label for="sporhaber0">Hayır, gösterilmesin.</label> </div> </div> </div> <h4 class="form-section"><i class="ft-grid"></i> Genel Modüller</h4> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Köşe Yazarları Blok:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="yazarlarblok" id="yazarlarblok1" value="1" @if ($setting->yazarlarblok == 1){{'checked'}} @endif> <label for="yazarlarblok1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="yazarlarblok" id="yazarlarblok0" value="0" @if ($setting->yazarlarblok == 0){{'checked'}} @endif> <label for="yazarlarblok0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Döviz Kurları:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="doviz" id="doviz1" value="1" @if ($setting->doviz == 1){{'checked'}} @endif> <label for="doviz1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="doviz" id="doviz0" value="0" @if ($setting->doviz == 0){{'checked'}} @endif> <label for="doviz0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Hava Durumu:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="havadurumu" id="havadurumu1" value="1" @if ($setting->havadurumu == 1){{'checked'}} @endif> <label for="havadurumu1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="havadurumu" id="havadurumu0" value="0" @if ($setting->havadurumu == 0){{'checked'}} @endif> <label for="havadurumu0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">E-Gazete:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="egazete" id="egazete1" value="1" @if ($setting->egazete == 1){{'checked'}} @endif> <label for="egazete1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="egazete" id="egazete0" value="0" @if ($setting->egazete == 0){{'checked'}} @endif> <label for="egazete0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat d-none"> <label class="col-md-3 label-control">E-Dergi:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="edergi" id="edergi1" value="1" @if ($setting->edergi == 1){{'checked'}} @endif> <label for="edergi1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="edergi" id="edergi0" value="0" @if ($setting->edergi == 0){{'checked'}} @endif> <label for="edergi0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Günlük Gazete Manşetleri:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="gazeteler" id="gazeteler1" value="1" @if ($setting->gazeteler == 1){{'checked'}} @endif> <label for="gazeteler1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="gazeteler" id="gazeteler0" value="0" @if ($setting->gazeteler == 0){{'checked'}} @endif> <label for="gazeteler0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Flaş Haber Bandı:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="flas" id="flas1" value="1" @if ($setting->flas == 1){{'checked'}} @endif> <label for="flas1">Evet, gösterilsin.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="flas" id="flas0" value="0" @if ($setting->flas == 0){{'checked'}} @endif> <label for="flas0">Hayır, gösterilmesin.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Çok Okunanlar:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="cokokunanlar" id="cokokunanlar1" value="1" @if ($setting->cokokunanlar == 1){{'checked'}} @endif> <label for="cokokunanlar1">Evet, gösterilsin.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="cokokunanlar" id="cokokunanlar0" value="0" @if ($setting->cokokunanlar == 0){{'checked'}} @endif> <label for="cokokunanlar0">Hayır, gösterilmesin.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Son Dakika:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="sondakika" id="sondakika1" value="1" @if ($setting->sondakika == 1){{'checked'}} @endif> <label for="sondakika1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="sondakika" id="sondakika0" value="0" @if ($setting->sondakika == 0){{'checked'}} @endif> <label for="sondakika0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Puan Durumu:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="pdurumu" id="pdurumu1" value="1" @if ($setting->pdurumu == 1){{'checked'}} @endif> <label for="pdurumu1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="pdurumu" id="pdurumu0" value="0" @if ($setting->pdurumu == 0){{'checked'}} @endif> <label for="pdurumu0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Haber Arşivi:</label> <div class="col-md-9"> <fieldset class="d-inline-block mr-1"> <input type="radio" name="arsiv" id="arsiv1" value="1" @if ($setting->arsiv == 1){{'checked'}} @endif> <label for="arsiv1">Evet, gösterilsin.</label> </fieldset> <fieldset class="d-inline-block"> <input type="radio" name="arsiv" id="arsiv0" value="0" @if ($setting->arsiv == 0){{'checked'}} @endif> <label for="arsiv0">Hayır, gösterilmesin.</label> </fieldset> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Namaz Durumu:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="ndurumu" id="ndurumu1" value="1" @if ($setting->ndurumu == 1){{'checked'}} @endif> <label for="ndurumu1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="ndurumu" id="ndurumu0" value="0" @if ($setting->ndurumu == 0){{'checked'}} @endif> <label for="ndurumu0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Seri İlanlar:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="ilanlar" id="ilanlar1" value="1" @if ($setting->ilanlar == 1){{'checked'}} @endif> <label for="ilanlar1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="ilanlar" id="ilanlar0" value="0" @if ($setting->ilanlar == 0){{'checked'}} @endif> <label for="ilanlar0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Firma Rehberi:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="firmalar" id="firmalar1" value="1" @if ($setting->firmalar == 1){{'checked'}} @endif> <label for="firmalar1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="firmalar" id="firmalar0" value="0" @if ($setting->firmalar == 0){{'checked'}} @endif> <label for="firmalar0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Biyografiler:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="biyografiler" id="biyografiler1" value="1" @if ($setting->biyografiler == 1){{'checked'}} @endif> <label for="biyografiler1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="biyografiler" id="biyografiler0" value="0" @if ($setting->biyografiler == 0){{'checked'}} @endif> <label for="biyografiler0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Taziyeler:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="taziyeler" id="taziyeler1" value="1" @if ($setting->taziyeler == 1){{'checked'}} @endif> <label for="taziyeler1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="taziyeler" id="taziyeler0" value="0" @if ($setting->taziyeler == 0){{'checked'}} @endif> <label for="taziyeler0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Anketler:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="anketler" id="anketler1" value="1" @if ($setting->anketler == 1){{'checked'}} @endif> <label for="anketler1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="anketler" id="anketler0" value="0" @if ($setting->anketler == 0){{'checked'}} @endif> <label for="anketler0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Eczaneler:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="eczaneler" id="eczaneler1" value="1" @if ($setting->eczaneler == 1){{'checked'}} @endif> <label for="eczaneler1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="eczaneler" id="eczaneler0" value="0" @if ($setting->eczaneler == 0){{'checked'}} @endif> <label for="eczaneler0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Sosyal Medya:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="sosyalmedya" id="sosyalmedya1" value="1" @if ($setting->sosyalmedya == 1){{'checked'}} @endif> <label for="sosyalmedya1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="sosyalmedya" id="sosyalmedya0" value="0" @if ($setting->sosyalmedya == 0){{'checked'}} @endif> <label for="sosyalmedya0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Röportajlar:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="roportajlar" id="roportajlar1" value="1" @if ($setting->roportajlar == 1){{'checked'}} @endif> <label for="roportajlar1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="roportajlar" id="roportajlar0" value="0" @if ($setting->roportajlar == 0){{'checked'}} @endif> <label for="roportajlar0">Hayır, gösterilmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Etkinlik Takvimi:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="etkinliktakvimi" id="etkinliktakvimi1" value="1" @if ($setting->etkinliktakvimi == 1){{'checked'}} @endif> <label for="etkinliktakvimi1">Evet, gösterilsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="etkinliktakvimi" id="etkinliktakvimi0" value="0" @if ($setting->etkinliktakvimi == 0){{'checked'}} @endif> <label for="etkinliktakvimi0">Hayır, gösterilmesin.</label> </div> </div> </div> </div> <div role="tabpanel" class="tab-pane" id="limitler" aria-expanded="true" aria-labelledby="base-limitler"> <div class="form-group row"> <label class="col-md-3 label-control" for="normallimit">Normal Manşet Limiti:</label> <div class="col-md-5"> <input type="number" id="normallimit" class="form-control" name="normallimit" value="{{$setting->normallimit}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="yataylimit">Büyük Manşet Limiti:</label> <div class="col-md-5"> <input type="number" id="yataylimit" class="form-control" name="yataylimit" value="{{$setting->yataylimit}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="katlimit">Kategori Haber Limiti:</label> <div class="col-md-5"> <input type="number" id="katlimit" class="form-control" name="katlimit" value="{{$setting->katlimit}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="sondklimit">Son Dakika Haber Limiti:</label> <div class="col-md-5"> <input type="number" id="sondklimit" class="form-control" name="sondklimit" value="{{$setting->sondklimit}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="okulimit">Çok Okunan Haber Limiti:</label> <div class="col-md-5"> <input type="number" id="okulimit" class="form-control" name="okulimit" value="{{$setting->okulimit}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="okugun">Çok Okunan Gün Aralığı: <i class="la la-info-circle" data-toggle="tooltip" title="Çok okunan haberlerde kaç günlük haberler gösterilsin?"></i></label> <div class="col-md-5"> <input type="number" id="okugun" class="form-control" name="okugun" value="{{$setting->okugun}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="benzerlimit">Benzer Haberler Limiti: <i class="la la-info-circle" data-toggle="tooltip" title="Haber detayında haberin sonunda benzer haberler kaç adet gösterilsin?"></i></label> <div class="col-md-5"> <input type="number" id="benzerlimit" class="form-control" name="benzerlimit" value="{{$setting->benzerlimit}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="biolimit">Biyografiler Modülü Limiti:</label> <div class="col-md-5"> <input type="number" id="biolimit" class="form-control" name="biolimit" value="{{$setting->biolimit}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="tazlimit">Taziyeler Modülü Limiti:</label> <div class="col-md-5"> <input type="number" id="tazlimit" class="form-control" name="tazlimit" value="{{$setting->tazlimit}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="roplimit">Röportajlar Modülü Limiti:</label> <div class="col-md-5"> <input type="number" id="roplimit" class="form-control" name="roplimit" value="{{$setting->roplimit}}"> </div> </div> <div class="form-group row"> <label class="col-md-3"></label> <div class="col-md-5"> <div class="alert alert-secondary mb-2" role="alert"> Limitleri orjinal haline getirmek için <a href="{{route('panel.ayarlar.sifirla')}}" onclick="return confirm('Tüm limitler orjinal haline döndürülecektir?')">tıklayın.</a> <i class="la la-info-circle" data-toggle="tooltip" title="Limit ayarlarını sistem tarafından otomatik olarak ilk haline getirir."></i> </div> </div> </div> </div> <div role="tabpanel" class="tab-pane" id="ajanslar" aria-expanded="true" aria-labelledby="base-ajanslar"> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Bot Haberleri:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="botonay" id="botonay1" value="1" @if ($setting->botonay == 1){{'checked'}} @endif> <label for="botonay1">Hemen yayınlansın.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="botonay" id="botonay0" value="0" @if ($setting->botonay == 0){{'checked'}} @endif> <label for="botonay0">Onay beklesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Bot Haberleri Ana Manşete:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="botmanset" id="botmanset1" value="1" @if ($setting->botmanset == 1){{'checked'}} @endif> <label for="botmanset1">Evet, gelsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="botmanset" id="botmanset0" value="0" @if ($setting->botmanset == 0){{'checked'}} @endif> <label for="botmanset0">Hayır, gelmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Bot Haberleri Flaş Bandına:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="botflas" id="botflas1" value="1" @if ($setting->botflas == 1){{'checked'}} @endif> <label for="botflas1">Evet, gelsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="botflas" id="botflas0" value="0" @if ($setting->botflas == 0){{'checked'}} @endif> <label for="botflas0">Hayır, gelmesin.</label> </div> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Son Dakika Kutusuna:</label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="botsondk" id="botsondk1" value="1" @if ($setting->botsondk == 1){{'checked'}} @endif> <label for="botsondk1">Evet, gelsin.</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="botsondk" id="botsondk0" value="0" @if ($setting->botsondk == 0){{'checked'}} @endif> <label for="botsondk0">Hayır, gelmesin.</label> </div> </div> </div> <h4 class="form-section"><i class="la la-cog"></i>Anadolu Ajansı Ayarları</h4> <div class="form-group row"> <label class="col-md-3 label-control" for="aakullanici">AA Kullanıcı Adı:</label> <div class="col-md-5"> <input type="text" id="aakullanici" class="form-control" name="aakullanici" value="{{$setting->aakullanici}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="aasifre">AA Şifre:</label> <div class="col-md-5"> <input type="text" id="aasifre" class="form-control" name="aasifre" value="{{$setting->aasifre}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="aasehir">AA Şehir:</label> <div class="col-md-5"> <select name="aasehir" id="aasehir" class="form-control"> <option value="0" selected="">Tüm Şehirler</option> <option @if ($setting->aasehir == 1){{'selected'}} @endif value="1">Adana</option> <option @if ($setting->aasehir == 40){{'selected'}} @endif value="40">Adıyaman</option> <option @if ($setting->aasehir == 82){{'selected'}} @endif value="82">Afyonkarahisar</option> <option @if ($setting->aasehir == 73){{'selected'}} @endif value="73">Ağrı</option> <option @if ($setting->aasehir == 55){{'selected'}} @endif value="55">Aksaray</option> <option @if ($setting->aasehir == 64){{'selected'}} @endif value="64">Amasya</option> <option @if ($setting->aasehir == 6){{'selected'}} @endif value="6">Ankara</option> <option @if ($setting->aasehir == 7){{'selected'}} @endif value="7">Antalya</option> <option @if ($setting->aasehir == 58){{'selected'}} @endif value="58">Ardahan</option> <option @if ($setting->aasehir == 71){{'selected'}} @endif value="71">Artvin</option> <option @if ($setting->aasehir == 12){{'selected'}} @endif value="12">Aydın</option> <option @if ($setting->aasehir == 16){{'selected'}} @endif value="16">Balıkesir</option> <option @if ($setting->aasehir == 79){{'selected'}} @endif value="79">Bartın</option> <option @if ($setting->aasehir == 33){{'selected'}} @endif value="33">Batman</option> <option @if ($setting->aasehir == 36){{'selected'}} @endif value="36">Bayburt</option> <option @if ($setting->aasehir == 21){{'selected'}} @endif value="21">Bilecik</option> <option @if ($setting->aasehir == 76){{'selected'}} @endif value="76">Bingöl</option> <option @if ($setting->aasehir == 74){{'selected'}} @endif value="74">Bitlis</option> <option @if ($setting->aasehir == 61){{'selected'}} @endif value="61">Bolu</option> <option @if ($setting->aasehir == 10){{'selected'}} @endif value="10">Burdur</option> <option @if ($setting->aasehir == 15){{'selected'}} @endif value="15">Bursa</option> <option @if ($setting->aasehir == 17){{'selected'}} @endif value="17">Çanakkale</option> <option @if ($setting->aasehir == 24){{'selected'}} @endif value="24">Çankırı</option> <option @if ($setting->aasehir == 23){{'selected'}} @endif value="23">Çorum</option> <option @if ($setting->aasehir == 9){{'selected'}} @endif value="9">Denizli</option> <option @if ($setting->aasehir == 27){{'selected'}} @endif value="27">Diyarbakır</option> <option @if ($setting->aasehir == 62){{'selected'}} @endif value="62">Düzce</option> <option @if ($setting->aasehir == 44){{'selected'}} @endif value="44">Edirne</option> <option @if ($setting->aasehir == 28){{'selected'}} @endif value="28">Elazığ</option> <option @if ($setting->aasehir == 35){{'selected'}} @endif value="35">Erzincan</option> <option @if ($setting->aasehir == 34){{'selected'}} @endif value="34">Erzurum</option> <option @if ($setting->aasehir == 18){{'selected'}} @endif value="18">Eskişehir</option> <option @if ($setting->aasehir == 38){{'selected'}} @endif value="38">Gaziantep</option> <option @if ($setting->aasehir == 69){{'selected'}} @endif value="69">Giresun</option> <option @if ($setting->aasehir == 37){{'selected'}} @endif value="37">Gümüşhane</option> <option @if ($setting->aasehir == 75){{'selected'}} @endif value="75">Hakkari</option> <option @if ($setting->aasehir == 2){{'selected'}} @endif value="2">Hatay</option> <option @if ($setting->aasehir == 59){{'selected'}} @endif value="59">Iğdır</option> <option @if ($setting->aasehir == 11){{'selected'}} @endif value="11">Isparta</option> <option @if ($setting->aasehir == 43){{'selected'}} @endif value="43">İstanbul</option> <option @if ($setting->aasehir == 46){{'selected'}} @endif value="46">İzmir</option> <option @if ($setting->aasehir == 3){{'selected'}} @endif value="3">Kahramanmaraş</option> <option @if ($setting->aasehir == 80){{'selected'}} @endif value="80">Karabük</option> <option @if ($setting->aasehir == 56){{'selected'}} @endif value="56">Karaman</option> <option @if ($setting->aasehir == 57){{'selected'}} @endif value="57">Kars</option> <option @if ($setting->aasehir == 26){{'selected'}} @endif value="26">Kastamonu</option> <option @if ($setting->aasehir == 48){{'selected'}} @endif value="48">Kayseri</option> <option @if ($setting->aasehir == 25){{'selected'}} @endif value="25">Kırıkkale</option> <option @if ($setting->aasehir == 81){{'selected'}} @endif value="81">Kırklareli</option> <option @if ($setting->aasehir == 52){{'selected'}} @endif value="52">Kırşehir</option> <option @if ($setting->aasehir == 42){{'selected'}} @endif value="42">Kilis</option> <option @if ($setting->aasehir == 20){{'selected'}} @endif value="20">Kocaeli</option> <option @if ($setting->aasehir == 53){{'selected'}} @endif value="53">Konya</option> <option @if ($setting->aasehir == 19){{'selected'}} @endif value="19">Kütahya</option> <option @if ($setting->aasehir == 41){{'selected'}} @endif value="41">Malatya</option> <option @if ($setting->aasehir == 47){{'selected'}} @endif value="47">Manisa</option> <option @if ($setting->aasehir == 29){{'selected'}} @endif value="29">Mardin</option> <option @if ($setting->aasehir == 4){{'selected'}} @endif value="4">Mersin</option> <option @if ($setting->aasehir == 14){{'selected'}} @endif value="14">Muğla</option> <option @if ($setting->aasehir == 77){{'selected'}} @endif value="77">Muş</option> <option @if ($setting->aasehir == 50){{'selected'}} @endif value="50">Nevşehir</option> <option @if ($setting->aasehir == 54){{'selected'}} @endif value="54">Niğde</option> <option @if ($setting->aasehir == 65){{'selected'}} @endif value="65">Ordu</option> <option @if ($setting->aasehir == 5){{'selected'}} @endif value="5">Osmaniye</option> <option @if ($setting->aasehir == 70){{'selected'}} @endif value="70">Rize</option> <option @if ($setting->aasehir == 60){{'selected'}} @endif value="60">Sakarya</option> <option @if ($setting->aasehir == 63){{'selected'}} @endif value="63">Samsun</option> <option @if ($setting->aasehir == 30){{'selected'}} @endif value="30">Siirt</option> <option @if ($setting->aasehir == 66){{'selected'}} @endif value="66">Sinop</option> <option @if ($setting->aasehir == 49){{'selected'}} @endif value="49">Sivas</option> <option @if ($setting->aasehir == 39){{'selected'}} @endif value="39">Şanlıurfa</option> <option @if ($setting->aasehir == 31){{'selected'}} @endif value="31">Şırnak</option> <option @if ($setting->aasehir == 45){{'selected'}} @endif value="45">Tekirdağ</option> <option @if ($setting->aasehir == 67){{'selected'}} @endif value="67">Tokat</option> <option @if ($setting->aasehir == 68){{'selected'}} @endif value="68">Trabzon</option> <option @if ($setting->aasehir == 32){{'selected'}} @endif value="32">Tunceli</option> <option @if ($setting->aasehir == 13){{'selected'}} @endif value="13">Uşak</option> <option @if ($setting->aasehir == 72){{'selected'}} @endif value="72">Van</option> <option @if ($setting->aasehir == 22){{'selected'}} @endif value="22">Yalova</option> <option @if ($setting->aasehir == 51){{'selected'}} @endif value="51">Yozgat</option> <option @if ($setting->aasehir == 78){{'selected'}} @endif value="78">Zonguldak</option> </select> </div> </div> <h4 class="form-section"><i class="la la-cog"></i>İhlas Haber Ajansı Ayarları</h4> <div class="form-group row"> <label class="col-md-3 label-control" for="ihaabonelik">İHA Abonelik Türü:</label> <div class="col-md-5"> <select class="form-control" name="ihaabonelik" id="ihaabonelik"> <option @if ($setting->ihaabonelik == 1){{'selected'}} @endif value="1">Standart Abonelik</option> <option @if ($setting->ihaabonelik == 2){{'selected'}} @endif value="2">İnternet Paketi</option> </select> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="ihakullanici">İHA Kullanıcı Kodu:</label> <div class="col-md-5"> <input type="text" id="ihakullanici" class="form-control" name="ihakullanici" value="{{$setting->ihakullanici}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="ihakullaniciadi">İHA Kullanıcı Adı:</label> <div class="col-md-5"> <input type="text" id="ihakullaniciadi" class="form-control" name="ihakullaniciadi" value="{{$setting->ihakullaniciadi}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="ihasifre">İHA Şifre:</label> <div class="col-md-5"> <input type="text" id="ihasifre" class="form-control" name="ihasifre" value="{{$setting->ihasifre}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="ihasehir">İHA Şehir:</label> <div class="col-md-5"> <select name="ihasehir" id="ihasehir" class="form-control"> <option value="0" selected="">Tüm Şehirler</option> <option @if ($setting->ihasehir == 1){{'selected'}} @endif value="1">Adana</option> <option @if ($setting->ihasehir == 40){{'selected'}} @endif value="40">Adıyaman</option> <option @if ($setting->ihasehir == 82){{'selected'}} @endif value="82">Afyonkarahisar</option> <option @if ($setting->ihasehir == 73){{'selected'}} @endif value="73">Ağrı</option> <option @if ($setting->ihasehir == 55){{'selected'}} @endif value="55">Aksaray</option> <option @if ($setting->ihasehir == 64){{'selected'}} @endif value="64">Amasya</option> <option @if ($setting->ihasehir == 6){{'selected'}} @endif value="6">Ankara</option> <option @if ($setting->ihasehir == 7){{'selected'}} @endif value="7">Antalya</option> <option @if ($setting->ihasehir == 58){{'selected'}} @endif value="58">Ardahan</option> <option @if ($setting->ihasehir == 71){{'selected'}} @endif value="71">Artvin</option> <option @if ($setting->ihasehir == 12){{'selected'}} @endif value="12">Aydın</option> <option @if ($setting->ihasehir == 16){{'selected'}} @endif value="16">Balıkesir</option> <option @if ($setting->ihasehir == 79){{'selected'}} @endif value="79">Bartın</option> <option @if ($setting->ihasehir == 33){{'selected'}} @endif value="33">Batman</option> <option @if ($setting->ihasehir == 36){{'selected'}} @endif value="36">Bayburt</option> <option @if ($setting->ihasehir == 21){{'selected'}} @endif value="21">Bilecik</option> <option @if ($setting->ihasehir == 76){{'selected'}} @endif value="76">Bingöl</option> <option @if ($setting->ihasehir == 74){{'selected'}} @endif value="74">Bitlis</option> <option @if ($setting->ihasehir == 61){{'selected'}} @endif value="61">Bolu</option> <option @if ($setting->ihasehir == 10){{'selected'}} @endif value="10">Burdur</option> <option @if ($setting->ihasehir == 15){{'selected'}} @endif value="15">Bursa</option> <option @if ($setting->ihasehir == 17){{'selected'}} @endif value="17">Çanakkale</option> <option @if ($setting->ihasehir == 24){{'selected'}} @endif value="24">Çankırı</option> <option @if ($setting->ihasehir == 23){{'selected'}} @endif value="23">Çorum</option> <option @if ($setting->ihasehir == 9){{'selected'}} @endif value="9">Denizli</option> <option @if ($setting->ihasehir == 27){{'selected'}} @endif value="27">Diyarbakır</option> <option @if ($setting->ihasehir == 62){{'selected'}} @endif value="62">Düzce</option> <option @if ($setting->ihasehir == 44){{'selected'}} @endif value="44">Edirne</option> <option @if ($setting->ihasehir == 28){{'selected'}} @endif value="28">Elazığ</option> <option @if ($setting->ihasehir == 35){{'selected'}} @endif value="35">Erzincan</option> <option @if ($setting->ihasehir == 34){{'selected'}} @endif value="34">Erzurum</option> <option @if ($setting->ihasehir == 18){{'selected'}} @endif value="18">Eskişehir</option> <option @if ($setting->ihasehir == 38){{'selected'}} @endif value="38">Gaziantep</option> <option @if ($setting->ihasehir == 69){{'selected'}} @endif value="69">Giresun</option> <option @if ($setting->ihasehir == 37){{'selected'}} @endif value="37">Gümüşhane</option> <option @if ($setting->ihasehir == 75){{'selected'}} @endif value="75">Hakkari</option> <option @if ($setting->ihasehir == 2){{'selected'}} @endif value="2">Hatay</option> <option @if ($setting->ihasehir == 59){{'selected'}} @endif value="59">Iğdır</option> <option @if ($setting->ihasehir == 11){{'selected'}} @endif value="11">Isparta</option> <option @if ($setting->ihasehir == 43){{'selected'}} @endif value="43">İstanbul</option> <option @if ($setting->ihasehir == 46){{'selected'}} @endif value="46">İzmir</option> <option @if ($setting->ihasehir == 3){{'selected'}} @endif value="3">Kahramanmaraş</option> <option @if ($setting->ihasehir == 80){{'selected'}} @endif value="80">Karabük</option> <option @if ($setting->ihasehir == 56){{'selected'}} @endif value="56">Karaman</option> <option @if ($setting->ihasehir == 57){{'selected'}} @endif value="57">Kars</option> <option @if ($setting->ihasehir == 26){{'selected'}} @endif value="26">Kastamonu</option> <option @if ($setting->ihasehir == 48){{'selected'}} @endif value="48">Kayseri</option> <option @if ($setting->ihasehir == 25){{'selected'}} @endif value="25">Kırıkkale</option> <option @if ($setting->ihasehir == 81){{'selected'}} @endif value="81">Kırklareli</option> <option @if ($setting->ihasehir == 52){{'selected'}} @endif value="52">Kırşehir</option> <option @if ($setting->ihasehir == 42){{'selected'}} @endif value="42">Kilis</option> <option @if ($setting->ihasehir == 20){{'selected'}} @endif value="20">Kocaeli</option> <option @if ($setting->ihasehir == 53){{'selected'}} @endif value="53">Konya</option> <option @if ($setting->ihasehir == 19){{'selected'}} @endif value="19">Kütahya</option> <option @if ($setting->ihasehir == 41){{'selected'}} @endif value="41">Malatya</option> <option @if ($setting->ihasehir == 47){{'selected'}} @endif value="47">Manisa</option> <option @if ($setting->ihasehir == 29){{'selected'}} @endif value="29">Mardin</option> <option @if ($setting->ihasehir == 4){{'selected'}} @endif value="4">Mersin</option> <option @if ($setting->ihasehir == 14){{'selected'}} @endif value="14">Muğla</option> <option @if ($setting->ihasehir == 77){{'selected'}} @endif value="77">Muş</option> <option @if ($setting->ihasehir == 50){{'selected'}} @endif value="50">Nevşehir</option> <option @if ($setting->ihasehir == 54){{'selected'}} @endif value="54">Niğde</option> <option @if ($setting->ihasehir == 65){{'selected'}} @endif value="65">Ordu</option> <option @if ($setting->ihasehir == 5){{'selected'}} @endif value="5">Osmaniye</option> <option @if ($setting->ihasehir == 70){{'selected'}} @endif value="70">Rize</option> <option @if ($setting->ihasehir == 60){{'selected'}} @endif value="60">Sakarya</option> <option @if ($setting->ihasehir == 63){{'selected'}} @endif value="63">Samsun</option> <option @if ($setting->ihasehir == 30){{'selected'}} @endif value="30">Siirt</option> <option @if ($setting->ihasehir == 66){{'selected'}} @endif value="66">Sinop</option> <option @if ($setting->ihasehir == 49){{'selected'}} @endif value="49">Sivas</option> <option @if ($setting->ihasehir == 39){{'selected'}} @endif value="39">Şanlıurfa</option> <option @if ($setting->ihasehir == 31){{'selected'}} @endif value="31">Şırnak</option> <option @if ($setting->ihasehir == 45){{'selected'}} @endif value="45">Tekirdağ</option> <option @if ($setting->ihasehir == 67){{'selected'}} @endif value="67">Tokat</option> <option @if ($setting->ihasehir == 68){{'selected'}} @endif value="68">Trabzon</option> <option @if ($setting->ihasehir == 32){{'selected'}} @endif value="32">Tunceli</option> <option @if ($setting->ihasehir == 13){{'selected'}} @endif value="13">Uşak</option> <option @if ($setting->ihasehir == 72){{'selected'}} @endif value="72">Van</option> <option @if ($setting->ihasehir == 22){{'selected'}} @endif value="22">Yalova</option> <option @if ($setting->ihasehir == 51){{'selected'}} @endif value="51">Yozgat</option> <option @if ($setting->ihasehir == 78){{'selected'}} @endif value="78">Zonguldak</option> </select> </div> </div> <h4 class="form-section"><i class="la la-cog"></i>Doğan Haber Ajansı Ayarları</h4> <div class="form-group row"> <label class="col-md-3 label-control" for="dhakullanici">DHA Kullanıcı Kodu:</label> <div class="col-md-5"> <input type="text" id="dhakullanici" class="form-control" name="dhakullanici" value="{{$setting->dhakullanici}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="dhakullaniciadi">DHA Kullanıcı Adı:</label> <div class="col-md-5"> <input type="text" id="dhakullaniciadi" class="form-control" name="dhakullaniciadi" value="{{$setting->dhakullaniciadi}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="dhasifre">DHA Şifre:</label> <div class="col-md-5"> <input type="text" id="dhasifre" class="form-control" name="dhasifre" value="{{$setting->dhasifre}}"> </div> </div> </div> <div role="tabpanel" class="tab-pane" id="sosyal" aria-expanded="true" aria-labelledby="base-sosyal"> <div class="form-group row"> <label class="col-md-3 label-control" for="fbsayfa">Facebook Sayfası: <i class="la la-info-circle" data-toggle="tooltip" title="Facebook sayfanızın bağlantı adresini giriniz."></i></label> <div class="col-md-5"> <input type="text" id="fbsayfa" class="form-control" name="fbsayfa" placeholder="onemsoft" value="{{$setting->fbsayfa}}"> </div> </div> <div class="form-group row skin skin-flat"> <label class="col-md-3 label-control">Facebook Yorum: <i class="la la-info-circle" data-toggle="tooltip" title="Haber ve makalelerin altında facebook yorum kutusu."></i></label> <div class="col-md-9"> <div class="d-inline-block mr-1"> <input type="radio" class="custom-control-input" name="fbyorum" id="fbyorum1" value="1" @if ($setting->fbyorum == 1){{'checked'}} @endif> <label for="fbyorum1">Aktif</label> </div> <div class="d-inline-block"> <input type="radio" class="custom-control-input" name="fbyorum" id="fbyorum0" value="0" @if ($setting->fbyorum == 0){{'checked'}} @endif> <label for="fbyorum0">Pasif</label> </div> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="fbapp">Facebook Uygulama ID: <i class="la la-info-circle" data-toggle="tooltip" title="Sitenizin Facebook sayfanız ile senkronize işlemi için gereklidir."></i></label> <div class="col-md-5"> <input type="number" id="fbapp" class="form-control" name="fbapp" value="{{$setting->fbapp}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="twkullanici">Twitter Kullanıcı Adı: <i class="la la-info-circle" data-toggle="tooltip" title="Twitter kullanıcı adınızı girin. Örn: onemsoft"></i></label> <div class="col-md-5"> <input type="text" id="twkullanici" class="form-control" name="twkullanici" placeholder="onemsoft" value="{{$setting->twkullanici}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="instagram">Instagram Adresi:</label> <div class="col-md-5"> <input type="text" id="instagram" class="form-control" name="instagram" value="{{$setting->instagram}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="linkedin">Linkedin Adresi:</label> <div class="col-md-5"> <input type="text" id="linkedin" class="form-control" name="linkedin" value="{{$setting->linkedin}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="youtube">Youtube Adresi:</label> <div class="col-md-5"> <input type="text" id="youtube" class="form-control" name="youtube" value="{{$setting->youtube}}"> </div> </div> </div> <div class="tab-pane" id="kod" aria-labelledby="base-kod"> <div class="form-group row"> <label class="col-md-3 label-control" for="analitik">Google Analitik Kodu:</label> <div class="col-md-9"> <input type="text" id="analitik" class="form-control" name="analitik" value="{{$setting->analitik}}"> <small class="text-muted">Örnek : UA-XXXXXX-XX</small> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="googlekod">Google Doğrulama Kodu:</label> <div class="col-md-9"> <input type="text" id="googlekod" class="form-control" name="googlekod" value="{{$setting->googlekod}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="newsname">Google News Başlık: <i class="la la-info-circle" data-toggle="tooltip" title="Eğer Google News kaydınız varsa buraya Google News başlığınızı yazın."></i></label> <div class="col-md-9"> <input type="text" id="newsname" class="form-control" name="newsname" value="{{$setting->newsname}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="googlekod">Google News Adresi: <i class="la la-info-circle" data-toggle="tooltip" title="Eğer Google News kaydınız varsa buraya Google News adresinizi girerseniz haber detayında Abone Ol butonu çıkacaktır."></i></label> <div class="col-md-9"> <input type="text" id="googlenews" class="form-control" name="googlenews" value="{{$setting->googlenews}}"> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="ekmeta">Ek Meta Kodları: <i class="la la-info-circle" data-toggle="tooltip" title="Tüm sitenizde geçerli olmak üzere HEAD etiketinin içine script, meta, style kodlarını ekleyebilirsiniz."></i></label> <div class="col-md-9"> <textarea class="form-control" name="ekmeta" id="ekmeta" rows="3">{{$setting->ekmeta}}</textarea> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="canliyayin">Canlı Yayın Kodları: <i class="la la-info-circle" data-toggle="tooltip" title="Eğer canlı yayın hizmetiniz var ise sağlayıcınızdan aldığınız kodları buraya yapıştırdığınızda anasayfada otomatik çıkacaktır."></i></label> <div class="col-md-9"> <textarea class="form-control" name="canliyayin" id="canliyayin" rows="3">{{$setting->canliyayin}}</textarea> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="kodreklam">Masaüstü Reklam Kodları: <i class="la la-info-circle" data-toggle="tooltip" title="Masaüstü görünüm için geçerli olan Admatic vb gibi sitelerden aldığınız kodları buraya yapıştırabilirsiniz."></i></label> <div class="col-md-9"> <textarea class="form-control" name="kodreklam" id="kodreklam" rows="3">{{$setting->kodreklam}}</textarea> </div> </div> <div class="form-group row"> <label class="col-md-3 label-control" for="mobilreklam">Mobil Reklam Kodları: <i class="la la-info-circle" data-toggle="tooltip" title="Mobil görünüm için geçerli olan Admatic vb gibi sitelerden aldığınız kodları buraya yapıştırabilirsiniz."></i></label> <div class="col-md-9"> <textarea class="form-control" name="mobilreklam" id="mobilreklam" rows="3">{{$setting->mobilreklam}}</textarea> </div> </div> <div class="form-group row d-none"> <label class="col-md-3 label-control" for="uygulama_android_link">Play Store Adresi: <i class="la la-info-circle" data-toggle="tooltip" title="Eğer Android mobil uygulamanız varsa buraya play store indirme linkini yazınız."></i></label> <div class="col-md-9"> <input type="text" id="uygulama_android_link" class="form-control" name="uygulama_android_link" value="{{$setting->uygulama_android_link}}"> </div> </div> <div class="form-group row d-none"> <label class="col-md-3 label-control" for="uygulama_ios_link">Apple Store Adresi: <i class="la la-info-circle" data-toggle="tooltip" title="Eğer iPhone mobil uygulamanız varsa buraya app store indirme linkini yazınız."></i></label> <div class="col-md-9"> <input type="text" id="uygulama_ios_link" class="form-control" name="uygulama_ios_link" value="{{$setting->uygulama_ios_link}}"> </div> </div> </div> </div> </div> </div> <div class="form-actions right mx-2 border-top-0 mt-0 pt-0"> <button type="submit" class="btn btn-success"> <i class="la la-check"></i> Kaydet </button> </div> </form> </div> </div> </div> </div> <!--/ son eklenen haberler 10 tane --> </div> @endsection @push("customJs") <script src="{{asset('assets/backend/app-assets/js/scripts/bootstrap-filestyle.min.js')}}"> </script> <script src="{{asset('assets/backend/app-assets/vendors/js/forms/icheck/icheck.min.js')}}"></script> <script src="{{asset('assets/backend/app-assets/js/scripts/ion.rangeSlider.min.js')}}"></script> <script src="{{asset('assets/backend/app-assets/vendors/js/pickers/miniColors/jquery.minicolors.min.js')}}"></script> <script> $('.skin-flat input').iCheck({ checkboxClass: 'icheckbox_flat-green', radioClass: 'iradio_flat-green' }); $("#yenileme").ionRangeSlider({ min: 0, max: 30, grid: true, grid_num: 6, postfix: " dk" }); $("#saniyeli_reklam_cache").ionRangeSlider({ min: 0, max: 60, grid: true, grid_num: 10, postfix: " dk" }); $("#popup_reklam_cache").ionRangeSlider({ min: 0, max: 60, grid: true, grid_num: 10, postfix: " dk" }); $('.minicolors').each( function() { $(this).minicolors({ control: $(this).attr('data-control') || 'hue', defaultValue: $(this).attr('data-defaultValue') || '', format: $(this).attr('data-format') || 'hex', keywords: $(this).attr('data-keywords') || '', inline: $(this).attr('data-inline') == 'true', letterCase: $(this).attr('data-letterCase') || 'lowercase', opacity: $(this).attr('data-opacity'), position: $(this).attr('data-position') || 'bottom left', swatches: $(this).attr('data-swatches') ? $(this).attr('data-swatches').split('|') : [], change: function(value, opacity) { if( !value ) return; if( opacity ) value += ', ' + opacity; }, theme: 'bootstrap' }); }); $(":file").filestyle({text: "Dosya Seç",size:"sm",dragdrop: false,htmlIcon: '<span class="la la-upload"></span>'}); </script> @endpush @push("customCss") <link rel="stylesheet" type="text/css" href="{{asset('assets/backend/app-assets/js/scripts/css/ion.rangeSlider.css')}}"> <link rel="stylesheet" type="text/css" href="{{asset('assets/backend/app-assets/js/scripts/css/ion.rangeSlider.skinModern.css')}}"> <link rel="stylesheet" type="text/css" href="{{asset('assets/backend/app-assets/vendors/css/forms/icheck/icheck.css')}}"> <link rel="stylesheet" type="text/css" href="{{asset('assets/backend/app-assets/vendors/css/forms/icheck/custom.css')}}"> <link rel="stylesheet" type="text/css" href="{{asset('assets/backend/app-assets/vendors/css/pickers/miniColors/jquery.minicolors.css')}}"> <link rel="stylesheet" type="text/css" href="{{asset('assets/backend/app-assets/css/plugins/pickers/colorpicker/colorpicker.css')}}"> @endpush
Kaydet
Ctrl+S ile kaydet