ikinci temizlik tamamlandı

This commit is contained in:
Ümit Tunç
2026-04-28 21:15:09 +03:00
parent f80443aec0
commit 37e7296527
8313 changed files with 2400677 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
@extends('admin.master')
@section("title",__("Alanlar"))
@section("desc",__("Bir türe ait girilen tüm alanların yönetildiği bölüm"))
@section('content')
<div class="content">
<div class="block">
<div class="block-header block-header-default">
<h3 class="block-title">Mevcut Alanlar</h3>
<div class="block-options">
<div class="block-options-item">
</div>
</div>
</div>
<div class="block-content">
<table class="table table-striped table-hover table-bordered table-vcenter">
<thead>
<tr>
<th>{{__("Title")}}</th>
<th>{{__("Form Tipi")}}</th>
<th>{{__("İçerik Tipi")}}</th>
<th>{{__("Ön Tanımlı Değerler")}}</th>
</tr>
</thead>
<tbody>
@foreach($fields AS $a)
<tr>
<td>{{$a->title}}</td>
<td><input type="text" name="input_type" value="{{$a->input_type}}" table="fields"data-id="{{$a->id}}" class="form-control edit" /></td>
<td>{{$a->type}}</td>
<td>
<input type="text" name="values" value="{{$a->values}}" table="fields" data-id="{{$a->id}}" class=" js-tags-input form-control edit" /></td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@endsection