@extends('layouts.app')
@section('title', translate('AdminAnatomy.create_title'))
@section('content')
{{ translate('AdminAnatomy.tree_title') }}
@foreach($topographies as $topography)
@if(is_null($topography->mother_id))
@include('AdminAnatomy.tree_node', ['node' => $topography])
@endif
@endforeach
@endsection