From b9c709fc55e07ca085b0397844aa13d5d53f6964 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Tue, 6 Sep 2016 00:28:21 +0200 Subject: Root kinds on trainer page --- resources/views/trainer.blade.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'resources/views') diff --git a/resources/views/trainer.blade.php b/resources/views/trainer.blade.php index 9bfb5a8..861b28f 100644 --- a/resources/views/trainer.blade.php +++ b/resources/views/trainer.blade.php @@ -1,10 +1,16 @@ + + @extends('layouts.with_sidebar') @section('sidebar')

Stems

- @foreach (\HebrewParseTrainer\Stem::all() as $stem) + @foreach (Stem::all() as $stem)
@@ -13,7 +19,7 @@

Tenses

- @foreach (\HebrewParseTrainer\Tense::all() as $tense) + @foreach (Tense::all() as $tense)
@@ -22,9 +28,9 @@

Roots

- @foreach (\HebrewParseTrainer\Root::all() as $root) + @foreach (Root::orderBy('root_kind_id')->get() as $root)
- +
@endforeach
-- cgit v1.2.3