的productTable
public function up()
{
Schema::create('product', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('description');
$table->string('type');
$table->integer('size');
$table->integer('price');
$table->string('image')->nullable();
$table->timestamps();
});
}
当我点击提交时,我收到错误,说找不到基表
答案 0 :(得分:2)
Laravel无法找到您使用的表名的prular形式,只需在模型上指定您的表名称即可;并检查您的视图以及确保您的资源/视图中有一个名为successs.blade.php的文件
public $table = "yourTableName";
答案 1 :(得分:0)
可能是您的表在数据库中不可用所以首先添加表 你的数据库。在你的模型中
php artisan make:migration
在模型中定义表后,只需迁移数据库中的表
var e1Values = [];
$("#e1").select2().on('change', function(e){
console.log(e, e.val);
if(e1Values.length < e.val.length) {
// Add the value when a new item is selected.
e.val.forEach(function(item, index){
if(e1Values.indexOf(item) == -1) {
e1Values.push(item);
}
});
} else {
// Remove the value when an item is deselected.
e1Values.forEach(function(item, index){
if(e.val.indexOf(item) == -1) {
e1Values.splice(index, 1);
}
});
}
console.log("Current value: ", e1Values);
});