Hello friends, welcome back to my blog. Today in this blog post, I am going to tell you, How to use angular 10 as frontend and laravel 8 as backend?
Angular10 came and if you are new then you must check below two links:
Here are the working code snippet for How to use angular 10 as frontend and laravel 8 as backend? and please follow carefully:
1. Firstly friends we need fresh angular 10 setup and for this we need to run below commands but if you already have angular 10 setup then you can avoid below commands. Secondly we should also have latest node version installed on our system:
Guys you can skip this step this step if you already have angular 10 fresh setup:
npm install -g @angular/cli ng new angularlaravel //Create new Angular Project cd angularlaravel // Go inside the Angular Project Folder ng serve --open // Run and Open the Angular Project http://localhost:4200/ // Working Angular Project Url
2. Now friends we need to add below code into your src/app/app.module.ts file:
import { HttpClientModule } from '@angular/common/http'; @NgModule({ imports: [ ... HttpClientModule ],
3. Now friends we need to add below code into src/app/app.component.ts file:
... import { HttpClient } from '@angular/common/http'; export class AppComponent { ... data:any; constructor(private http: HttpClient){ this.http.get('http://localhost/laravel8/public/api/sample-restful-apis').subscribe(data => { this.data = data; console.log(this.data); }, error => console.error(error)); } }
4. Now friends we need to add below code into src/app/app.component.html file:
<table> <thead> <tr> <th>Name</th> <th>Website</th> </tr> </thead> <tbody> <tr *ngFor="let mydata of data"> <td>{{mydata.name}}</td> <td>{{mydata.domain}}</td> </tr> </tbody> </table>
5. Laravel 8 demo api that I have made into my routes/api.php file:
Route::get('sample-restful-apis', function() { return response()->json([ [ 'name' => 'Therichpost', 'domain' => 'therichpost.com' ],[ 'name' => 'Therichpost', 'domain' => 'therichpost.com' ],[ 'name' => 'Therichpost', 'domain' => 'therichpost.com' ],[ 'name' => 'Therichpost', 'domain' => 'therichpost.com' ],[ 'name' => 'Therichpost', 'domain' => 'therichpost.com' ] ]); });
Now we are done friends. If you have any kind of query or suggestion or any requirement then feel free to comment below.
Guys in this post, I am getting data into my angular 10 front-end from Laravel 8 backend.
Note: Friends, I just tell the basic setup and things, you can change the code according to your requirements. For better understanding must watch video above.
I will appreciate that if you will tell your views for this post. Nothing matters if your views will be good or bad.
Jassa
Thanks
Recent Comments