Prechádzať zdrojové kódy

Add a sample comment in LoadSampleData.php

axkuhta 1 rok pred
rodič
commit
c1f81b4a94
1 zmenil súbory, kde vykonal 6 pridanie a 0 odobranie
  1. 6 0
      app/Console/Commands/LoadSampleData.php

+ 6 - 0
app/Console/Commands/LoadSampleData.php

@@ -66,6 +66,12 @@ class LoadSampleData extends Command
         $book->annotation = "If you understand basic mathematics and know how to program with Python, you're ready to dive into signal processing. While most resources start with theory to teach this complex subject, this practical book introduces techniques by showing you how they're applied in the real world. In the first chapter alone, you'll be able to decompose a sound into its harmonics, modify the harmonics, and generate new sounds.";
         $book->annotation = "If you understand basic mathematics and know how to program with Python, you're ready to dive into signal processing. While most resources start with theory to teach this complex subject, this practical book introduces techniques by showing you how they're applied in the real world. In the first chapter alone, you'll be able to decompose a sound into its harmonics, modify the harmonics, and generate new sounds.";
         $book->save();
         $book->save();
 
 
+        $book->comments()->create([
+			"name" => "somebody",
+			"email" => "a@mail.ru",
+			"content" => "Отличная книга!"
+        ]);
+
         $book = new Book;
         $book = new Book;
         $book->name = "Think Stats";
         $book->name = "Think Stats";
         $book->isbn = "978-1491907337";
         $book->isbn = "978-1491907337";