@extends('layout.default') @section('title', $L('Chores')) @section('activeNav', 'chores') @section('viewJsName', 'chores') @section('content')

@yield('title')  {{ $L('Add') }}  {{ $L('Configure userfields') }}

@include('components.userfields_thead', array( 'userfields' => $userfields )) @foreach($chores as $chore) @include('components.userfields_tbody', array( 'userfields' => $userfields, 'userfieldValues' => FindAllObjectsInArrayByPropertyValue($userfieldValues, 'object_id', $chore->id) )) @endforeach
{{ $L('Name') }} {{ $L('Period type') }} {{ $L('Description') }}
{{ $chore->name }} {{ $L($chore->period_type) }} {{ $chore->description }}
@stop