ikinci temizlik tamamlandı
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user