Adding our Logic Directly to our Form's Action | Creating a Simple Honeypot Field in Laravel
Our next example will be to add our logic directly to the code that fires when our form is submitted. To do this, we will pretty much just be copying and pasting our logic into our route file and removing the middleware: 1 <?php 2 3 use Illuminate...