Bu paketi kategoriler için kullanmak istiyorum .
Dökümantasyon acık önümde sürekli inserting node Creating node diye örnek vermiş ama ufak bir destek lazım üzgünüm .
ResourceController oluşturup Crud için bu modul ile işlem yapmak isityorum , bir formum var admin bu formdan gönderdiği veriyi oluşturmak update delete gibi işlemler için kullanıcam küçük bir Create fonksiyonu örneği alabilirmiyim $request den gelen bir veriyi ana kategori olarak nasıl kaydederim .
Creating nodes
When you simply creating a node, it will be appended to the end of the tree:
Category::create($attributes); // Saved as root
$node = new Category($attributes);
$node->save(); // Saved as root
In this case the node is considered a root which means that it doesn't have a parent.
bu yukardaki yapı kullanılacak sanırım
birde bu nedemek ?
Making a root from existing node
// #1 Implicit save
$node->saveAsRoot();
// #2 Explicit save
$node->makeRoot()->save();
The node will be appended to the end of the tree.
Son olarakda veritabanında lft rgt gibi kolonlar oluşuyor bunlarıda güncelliyecekmiyim ?