{{ Form::label_col('', 1, \App\Helpers\FormComponentHelper::SIZE_TINY, 'label-grey', 'img-col') }}
{{ Form::label_grey_col("ITEM", 4) }}
@if (\App\Models\Menu_Item::can_see_price($menu, $menu_section))
{{ Form::label_grey_col("AVAILABLE FROM", 2) }}
{{ Form::label_grey_col("AVAILABLE TO", 2) }}
{{ Form::label_grey_col("PRICE", 2) }}
@else
{{ Form::label_grey_col("AVAILABLE FROM", 3) }}
{{ Form::label_grey_col("AVAILABLE TO", 3) }}
@endif
@foreach($menu_items as $menu_item)
@include('business.menu._menu_item', [$menu, $menu_section, $menu_item])
@endforeach