Angular Projects For Beginners With Laravel | Hotel Management System project with angular 8 and Laravel (create user section related component in angular ) Part 9

in this tutorial we will create all user related component for angular project  following type of components required for our project

  1. Home Component
  2. About Component
  3. Contect Component
  4. Authentication Component
  5. Room Booking Request Component
  6. Feedback Component

we will create all component using this command
Command : ng g c compoent_name 

 

1. Home Component : 
   Command : ng g c Home 
   After Execute this command you can get 4 file

  •     Home.component.css
  •     Home.component.html
  •     Home.component.spec.ts
  •     Home.component.ts

    
2. About Component : 
   Command : ng g c About 
   After Execute this command you can get 4 file

  •     About.component.css
  •     About.component.html
  •     About.component.spec.ts
  •     About.component.ts

    
    
3. Contect Component : 
   Command : ng g c Contect 
   After Execute this command you can get 4 file

  •     Contect.component.css
  •     Contect.component.html
  •     Contect.component.spec.ts
  •     Contect.component.ts

    
4. Authentication Component : 
   Command : ng g c Authentication 
   After Execute this command you can get 4 file

  •     Authentication.component.css
  •     Authentication.component.html
  •     Authentication.component.spec.ts
  •     Authentication.component.ts

    
5. RoomBookingRequest Component : 
   Command : ng g c RoomBookingRequest 
   After Execute this command you can get 4 file

  •     RoomBookingRequest.component.css
  •     RoomBookingRequest.component.html
  •     RoomBookingRequest.component.spec.ts
  •     RoomBookingRequest.component.ts

    
6. Feedback Component : 
   Command : ng g c Feedback 
   After Execute this command you can get 4 file

  •     Feedback.component.css
  •     Feedback.component.html
  •     Feedback.component.spec.ts
  •     Feedback.component.ts

Tutorial Topics