@extends('front.layout.main') @section('content')

{{ $currentPage->languages->where('lang_short', $lang)->first()->pivot->title }}

    @foreach($currentPage->children as $key => $row)
  • {{ $row->languages->where('lang_short', $lang)->first()->pivot->title }}

    @if($row->image_id) @endif
  • @endforeach
@stop