Posts by Marcelo Torres • 31 points
1 post
-
3
votes3
answers5888
viewsQ: Difference between the create and Fill method - Standard
I was developing a web service with Laravel, and I realized that I can save the data in my database in two ways: Product::create($request->all()); or else: $product = new Product();…