@extends('layouts.app') @include('layouts.datatables_css') @section('content') @include('phrase.header')
{!! Form::open(['route' => 'phrase.search', 'class' => 'col s12','id'=>'search-form']) !!} {!! Form::token() !!}
{!! Form::select('courseId', $courses, null, ['id' => 'courseId']); !!} {!! Form::label('courseId', 'Course') !!}
{!! Form::label('levelGroup', 'Select Level Group') !!}
{!! Form::label('levels', 'Select Level') !!}
{!! Form::button('Searchsend', ['type' => 'submit', 'class' => 'btn','id'=>'search-button']); !!} {!! Form::close() !!}
Phrases
@foreach ($phrases as $phrase) @endforeach
Course Name Local Word English Word Level Actions
{{ $phrase->courseName }} {{ $phrase->phrase_local}} {{ $phrase->phrase_english}} @isset($phrase->levels) @foreach($phrase->levels as $level) {{ $level->name }}, @endforeach @endisset remove_red_eye edit Last: {{ isset($phrase->lastDownloaded) ? $phrase->lastDownloaded : "NA" }}
@endsection @include('layouts.datatables_js')