Файл: vendor/laravel/framework/src/Illuminate/Database/Eloquent/MissingAttributeException.php
Строк: 28
<?php
namespace IlluminateDatabaseEloquent;
use OutOfBoundsException;
class MissingAttributeException extends OutOfBoundsException
{
/**
* Create a new missing attribute exception instance.
*
* @param IlluminateDatabaseEloquentModel $model
* @param string $key
* @return void
*/
public function __construct($model, $key)
{
parent::__construct(sprintf(
'The attribute [%s] either does not exist or was not retrieved for model [%s].',
$key, get_class($model)
));
}
}