Yii2- Unable to upload image
I am working on yii2 . In one of my view, I am trying to upload an image. But I am unable to upload it. Model class MeterAcceptanceHeader extends \yii\db\ActiveRecord { public static $status_titles =[ 0 => 'Prepared', 1 => 'Created', 2 => 'Printed', 3 => 'Canceled', ]; /** * @inheritdoc */ public static function tableName() { return 'meter_acceptance_header'; } /** * @inheritdoc */ public function rules() { return [ [['sub_div', 'prepared_by'], 'required'], [['prepared_by', 'updated_by'], 'integer'], [['prepared_at', 'updated_at'], 'safe'], [['sub_div', 'meter_type', 'status'], 'string', 'max'