@extends('layouts.header') @section('content')
@if(count($result) > 0) @foreach($result as $menu) @if($menu->type == 'FOLDER')
 {{ $menu->text}}
@else
 {{ $menu->file_name}}
@endif @endforeach @else
@endif
@endsection @section('append') @endsection