Esempio n. 1
0
 /**
  * Destroy a post.
  *
  * @param App\Models\Post $post        	
  * @return void
  */
 public function destroy($post)
 {
     $post->delete();
     SearchIndexFacade::removeFromIndex($post);
 }
Esempio n. 2
0
 /**
  * Destroy a post.
  *
  * @param App\Models\Post $post        	
  * @return void
  */
 public function destroy($post)
 {
     $post->delete();
 }