型号:
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
但是数据不会插入到服务器上的所需表中。
但它在当地完美运作。
检查日志文件存储和服务器。没有发现错误。
已使用try
和catch
但未发生任何事情。
已经尝试过composer dump-autoload
和php artisan cache:clear
知道为什么它不能在服务器上工作吗?