Пишу плагин обратной формы. Создал компонент Contact Form.
ContactForm.php:
<?php namespace Titamik\Contact\Components;
use Cms\Classes\ComponentBase;
use Input;
Use Mail;
class contactform extends ComponentBase {
public function componentDetails() {
return [
'name' => 'Contact Form',
'decription' => 'Контактная форма'
];
}
public function onSend() {
$vars = ['name' => Input::get('name'), 'email' => Input::get('email')];
Mail::send('empty', $vars, function($message) {
$message->to('admin@domain.tld', 'Admin Person');
$message->subject('This is a reminder');
});
}
}
Вылазит ошибка:
call to a member function getAttribute() on null on line 447 .../parsedownextra.php
Вообще, делал все, как в этом видео:
https://www.youtube.com/watch?time_continue=542&v=...
Только на видео работает, а у меня нет(