@extends('layout.default')
@section('title', $L('Chores'))
@section('activeNav', 'chores')
@section('viewJsName', 'chores')
@section('content')
|
{{ $L('Name') }} |
{{ $L('Period type') }} |
{{ $L('Period days') }} |
{{ $L('Description') }} |
@foreach($chores as $chore)
|
{{ $chore->name }}
|
{{ $L($chore->period_type) }}
|
{{ $chore->period_days }}
|
{{ $chore->description }}
|
@endforeach
@stop