Как назначить входное значение переменной в блочной форме плагинов.
$termid = Input::get('term_id');
// этот код не работает для меня.
namespace Cng\Tennis\Models;
use Model;
use Flash;
use Db;
use Input;
class Lesson extends Model {
public function getSdateOptions () {
// $attributes = $this->getAttributes();
// $termid = $attributes['term_id'];
$termid = Input::get('term_id');
if ($this->term_id == $termid ) {
$term = Db::table('cng_tennis_term')->where('id', $termid )->first();
return [ $term->start_date => $term->finish_date ];
}
else {
return ['Select a date' => 'Select a date' ];
}
}