Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP

mairakotsovoulou
mairakotsovoulou
3,907 Points

Method [beforeFilter] does not exist.

I am using Laravel 5.3 and up to now I have solved all discrepancies between the 2 versions. but I do not know what to do with this one:

public function __construct() {
$this->beforeFilter('csrf', array('on'=> 'post')); } I read that beforeFilter has been replaced with middleware and by default csrf is enabled for all routes. Does this mean that I can remove the constructor and it will function successfully??

mairakotsovoulou
mairakotsovoulou
3,907 Points

I commented out the constructor and I tried to modify the generated csrf token and laravel responded with: TokenMismatchException in VerifyCsrfToken.php. So I think that the beforeFilter is no longer required.