@php require_frontend_packages(['datatables']); @endphp
@extends('layout.default')
@section('title', $__t('Meal plan sections'))
@section('content')
|
{{ $__t('Name') }} |
{{ $__t('Sort number') }} |
{{ $__t('Time') }} |
@foreach($mealplanSections as $mealplanSection)
|
{{ $mealplanSection->name }}
|
{{ $mealplanSection->sort_number }}
|
{{ $mealplanSection->time_info }}
|
@endforeach
@stop