@extends('layout.default')
@section('title', $__t('Meal plan sections'))
@section('activeNav', 'mealplansections')
@section('viewJsName', 'mealplansections')
@section('content')
|
{{ $__t('Name') }} |
{{ $__t('Sort number') }} |
{{ $__t('Time') }} |
@foreach($mealplanSections as $mealplanSection)
|
{{ $mealplanSection->name }}
|
{{ $mealplanSection->sort_number }}
|
{{ $mealplanSection->time_info }}
|
@endforeach
@stop