I am trying to create an Angular/Laravel web application(first time with both combined). I created a Laravel 5.4 application and make some apis for login/signup/logout using JWT auth. I installed bower globally and created a bower project inside the resources/assets. I implemented the layout, router and controllers in angular. Now I want to use webpack to transpile the code to es5 and render a single js file inside public folder. How do I need to tweak my webpack to do this?
@WebKenth Yeah, completely forgot that. Got the file bundled now. Thanks! But another major question: inside the resources/assets, if you have seen my screenshot there are few html files are there how does that get to the view? I mean like I never used Angular & Laravel together so dont have much of an idea. Should I move the html files to the resources/views folder and use my routes to render that view or how does it work?