I have a Laravel/Angular application I am working on.
In public/app/js are all of my Angular files.
Should I just collect the data in Angular, send an HTTP request, and use Laravel's validation class to handle validation (and creating of the record) for registration and everything else?
Or should I use Angular to take care of the validation and keep Laravel only as the API endpoint for CRUD operations?
I'm new to frontend JavaScript frameworks and appreciate any insight or advice.