Laravel Form Collective Select Tutorial
The select form is a bit complicated among other forms in Laravel collective. It is because we need to follow certain rules to make it work. First of all the code of the form looks like this Form::select(“postId”, $post, null, [‘class’ => ‘form-control’]); Let me explain the code first. We need to store the value …