コード例 #1
0
 /**
  * Execute the console command.
  *
  */
 public function fire()
 {
     $posts = Post::all();
     foreach ($posts as $post) {
         $this->updateMetadata($post);
     }
 }
コード例 #2
0
 /**
  * @return \Illuminate\Database\Eloquent\Collection|static[]
  */
 public function getAllPosts()
 {
     return $this->post->all();
 }