@extends('Admin.Layout.main_layout') @section('main_container')

Category

@php function categoryTree($parent_id = 0, $sub_mark = '',$my_id='') { $query = DB::table('category')->where('parent_id','=', $parent_id)->get(); if(count($query) > 0){ foreach($query as $value){ if($value->cat_id == $my_id){ $s = "selected='selected'"; }else{ $s=""; } echo ''; categoryTree($value->cat_id, $sub_mark.'---',$my_id); } } } @endphp
@endsection