Overview for 'laracasts'
Written by Laracasts
/ Original link
on Apr. 24, 2017
Now that we've written the necessary code to record all relevant activity, in this episode, we can render it onto the user's profile page, and group all relevant records according to their date. View…
Written by Laracasts
/ Original link
on Apr. 21, 2017
In this episode, we'll use TDD to drive out an activity feed. That way, we can, for example, track when a user creates a new forum thread, or posts a reply. As always, we'll begin with the most basic…
Written by Laracasts
/ Original link
on Apr. 19, 2017
We must be careful that we don't inadvertently give any registered forum user the ability to delete all threads. Let's create a policy class to ensure that this can't happen. View the the source code…
Written by Laracasts
/ Original link
on Apr. 19, 2017
One simple ability that we haven't yet implemented is the option to delete threads. If "John Doe" creates a thread and later changes his mind, let's allow him to delete it entirely.
Written by Laracasts
/ Original link
on Apr. 18, 2017
It would be useful if every user in our forum had an associated profile page. That way, we can review more information about them, including all threads that they've personally created. View the sour…
Written by Laracasts
/ Original link
on Apr. 14, 2017
In this episode, I'm working on the Laracasts codebase. Specifically, I need a simple way to quickly generate single-use coupon codes, save them to the database, push them to Stripe.com, and then fir…