laracasts / Lets-Build-a-Forum-in-Laravel

http://laracasts.com/series/lets-build-a-forum-with-laravel
915 stars 309 forks source link

Replying more than once = pipeline.php error #24

Open ghost opened 7 years ago

ghost commented 7 years ago

when you try and reply multiple times you get the following error popup: without error:

withouterror

with error: witherror

ghost commented 7 years ago

BUMP

brucebrophy commented 7 years ago

Don't know if you tried this, but try doing \Gate to use the Gate method

Here is the solution that worked for me.

if (\Gate::denies('create', new Reply)) {
     return response(
          'You are posting too frequently, please take a break. :)', 429
     );
}
flashadvocate commented 6 years ago

That error message is completely useless