コード例 #1
0
ファイル: CreateArticle.php プロジェクト: nandwabee/blog
 public function store($payload)
 {
     return Post::create($payload);
 }
コード例 #2
0
ファイル: FindArticle.php プロジェクト: nandwabee/blog
 /**
  * Find a single article using its id
  *
  * @param $id string The unique string identifying the article.
  */
 public function find($id)
 {
     $article = Post::find($id);
     return $article;
 }