Last active
February 13, 2018 18:22
-
-
Save anthonyterrell/6a64ebad11a678c4c39fde80d21ccc00 to your computer and use it in GitHub Desktop.
Blog post observer for piece
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* BlogPost creating event | |
* | |
* @param \App\BlogPost $blogPost | |
*/ | |
public function creating(BlogPost $blogPost) | |
{ | |
$blogPost->generateSlug(); | |
} | |
/** | |
* BlogPost created event | |
* | |
* @param \App\BlogPost $blogPost | |
*/ | |
public function created(BlogPost $blogPost) | |
{ | |
$blogPost->publish(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment