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

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

@foreach($chores as $chore) @endforeach
# {{ $L('Name') }} {{ $L('Period type') }} {{ $L('Period days') }} {{ $L('Description') }}
{{ $chore->name }} {{ $L($chore->period_type) }} {{ $chore->period_days }} {{ $chore->description }}
@stop