laravel模型在localhost上工作但不在服务器上工作

时间:2018-04-18 06:56:14

标签: php laravel eloquent

型号:

namespace App;

use Illuminate\Database\Eloquent\Model;

class Booking extends Model
{
    protected $table = 'bookings';
    protected $guarded = [];

    const CREATED_AT = 'created';
    const UPDATED_AT = 'modified';

    public function details()
    {
        return $this->hasMany(BookingDetail::class);
    }

    public function billing_information()
    {
        return $this->hasOne(BillingInfo::class);
    }
}

控制器:

$data = [
    // ...
];

// Saving Booking Information
$booking = new Booking();
$booking->fill($data); //if var_dump here data found
$booking->save(); // if var_dump here no response

但是数据不会插入到服务器上的所需表中。 但它在当地完美运作。 检查日志文件存储和服务器。没有发现错误。 已使用trycatch但未发生任何事情。 已经尝试过composer dump-autoloadphp artisan cache:clear

知道为什么它不能在服务器上工作吗?

0 个答案:

没有答案