Laravel and Angular: Automated

Robert Brisita
4 min readApr 23, 2019

Most tutorials that mention Laravel and Angular create two separate projects: one for the frontend and one for the backend; this leaves more to manage and adding an extra composer dependency to handle the CORS issue. The purpose of this article is to show how to integrate Angular into a new Laravel project using Laravel Mix. Each version of Angular has particular dependencies and because of how npm works it can be a hassle getting it all right. What will be shown is what gets deleted, changed, and created. This article was possible using these articles:

TL;DR

The script below takes care of the dependencies depending on which Angular version chosen. Versions 4–7 have been tested in Laravel versions 5.4–5.8. The script should only be run on a new Laravel project as files get deleted and rewritten.

Breakdown

Deleted Files

Deleting JS, Sass, and CSS files.

All JS and Sass files and their processed output are deleted.

Changed Files

Changing package.json.

The purpose is to show Angular working without any other noise; unneeded JS dependencies are removed as well as Bootstrap and Sass.

package.json for Laravel v5.5.45 with Angular v7.2.13.

The added packages are the bare essentials for Angular to work with Laravel Mix. Node package installs are found between lines 90 through 114 of the installation script.

webpack.mix.js

Introduce TypeScript files and require a webpack custom config.

resources/views/welcome.blade.php

Modify ‘welcome.blade.php’ to load generated JS files and use a custom element for Angular application entry.

Created Files

webpack-custom.mix.js

Create a custom config that links the ‘.ts’ extension to the ‘ts-loader’ module to process TypeScript files. The ‘plugins’ portion shown resolves to a certain folder (CORE_FOLDER) depending on the Angular version being installed (lines 222–232 of installation script).

tsconfig.json

Configure TypeScript and exclude folders from package managers.

The rest of the files are example TypeScript files using Angular components and modules. Where they reside depends on the Laravel version being used.

resources/[assets/]/ts/components/app.component.ts
resources/[assets/]/ts/components/app.module.ts
resources/[assets/]/ts/main.ts
resources/[assets/]/ts/vendor.ts

Test Install

After all files have been properly managed and in their place, the installation can be tested by running:

npm run dev && php artisan serve

Laravel’s Artisan serving generated and templated files.

Conclusion

What has been described in this article were the modifications that need to happen in a new Laravel project to activate Angular as the project’s frontend. Because of simplicity of the TypeScript files used, one can see how they relate starting from ‘webpack.mix.js’ file. Following any tutorial on Angular development should prove successful from here on out. Otherwise for further development, add other packages using npm and add them to their respective places: vendor.ts, webpack.mix.js, etc.

Webpack Loaders

Any TypeScript loader can be used and/or chained to other loaders. To increase the speed of the ‘ts-loader’ check out this article.

--

--

Robert Brisita

Daydreaming night owl, giver of unsolicited advice, software engineer by passion, always learning and ever living...