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
@@ -0,0 +1,36 @@
<div class="content">
<div class="row">
<?php
$typeArray = $types->toArray();
//dump($typeArray);
$reTypes = [];
foreach($typeArray AS $type) {
if($type['kid'] != "") {
?>
{{col("col-md-3 text-center","")}}
<img src="{{url("assets/icons/".$type['icon'] . ".png")}}" width="48" alt="">
<strong>{{$type['title']}}</strong>
<div class="row">
<?php foreach($typeArray AS $subType) {
if($subType['kid'] != "") {
if($subType['kid'] == $type['kid']) { ?>
{{col("col-md-6 text-center","")}}
<img src="{{url("assets/icons/".$subType['icon'] . ".png")}}" width="48" alt="">
<a href="{{ url('admin/types/'. $subType['slug']) }}">{{$subType['title']}}</a>
{{_col()}}
<?php
}
}
} ?>
</div>
{{_col()}}
<?php
}
}
?>
</div>
</div>