In this chapter, we will look at how to include a Bootstrap framework inside a running Angular application using the new add feature from the Angular CLI.
The Bootstrap framework is one of the most important UI frameworks, and, with Angular directives/components, we can have all the power of Bootstrap inside our Angular application.
We will also look at how to connect our Angular services with components and how to using the backend API to put it all together. Finally, we will learn how to configure Cross-Origin Resource Sharing (CORS) on our backend API and how to use it with our Angular client-side application.
In this chapter, we will cover the following topics:
- Installing the Bootstrap CSS framework
- Writing Angular templates with Bootstrap
- How to set up CORS on the Laravel backend
- Connecting Angular services with application...