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