Validator
$messages = array(
'required' => 'Поле :attribute должно быть заполнено.',
);
$validator = Validator::make($input, $rules, $messages);
app/lang/xx/validation.php
'custom' => array(
'email' => array(
'required' => 'Нам нужно знать ваш e-mail адрес!',
),
),
interface ImageHandler {
public function upload($args);
}
$this->app->bind('pathToYourInterface', 'pathToYourService');
public function __construct(ImageHandler $handler)
{
$this->handler = $handler;
}