我正在使用 Laravel框架开发系统。我创建了一个与我的数据库表关系的模型。
我的问题是,我可以将模型属性与表格列相关联吗?
例如,以下是我的客户端模型:
import tkinter as tk
class MyGui(tk.Tk):
def __init__(self):
super(MyGui, self).__init__()
self.create_widgets()
def widget_button(self):
self.frame = tk.Frame(self)
self.frame.pack()
self.buttonA = tk.Button(self.frame, padx=13, pady=6, bd=4, text="Sample",bg="black", command=self.trial)
def trial(self):
print("Button color is changed to green")
if __name__ == "__main__":
root = MyGui()
root.mainloop()
我是否可以使用class Client extends Model {
protected $table = "clients";
}
访问any_column
?
答案 0 :(得分:0)
是的,您的班级正在扩展{Entquent模型的Model类。 Eloquent提供了一个简单的ActiveRecord pattern实现,因此可以使用实现它的对象中的属性名访问数据库的每一列。