我们有这样的表格:
<form method="post" action="insert">
<input type="datetime-local" id="datetime" name="datetime">
<button class="btn btn-success" type="submit" onclick="llogarit()"> Llogarit </button>
</form>
这个模型:
<?php
namespace Mejili\Core\Models;
use Eloquent;
class Timer extends Eloquent{
protected $table = 'timer';
protected $fillable = ['count_id', 'ora'];
}
和这个功能
public function insert()
{
$time = Input::get('datetime');
$timer = new Timer;
$timer->ora = $time;
$timer->save();
}
Laravel给了我们这个错误:
未找到类'Mejili \ Core \ Models \ Timer'
我们在哪里有错误!欢迎任何帮助:)
答案 0 :(得分:0)
如果我理解你的问题。我认为您的Timer模型丢失了,您需要使用以下命令创建Timer Model: -
select your directory -> php artisan make:model Timer
之后,您需要像这样在控制器中使用该模型: -
use App\Timer; // add before controller
public function insert()
{
$time = Input::get('datetime');
$timer = new Timer;
$timer->ora = $time;
$timer->save();
}
希望它有所帮助!