# Working with View

Views contain the HTML served by your application and separate your controller / application logic from your presentation logic.

Views are stored in the resources/views directory

View

Views are stored in the resources/views directory

  1. Go to resources/views

  2. Create training folder

  3. Inside training folder, create:

    1. create.blade.php
    2. index.blade.php

View

# Views - Index View

  1. Go to resources/views/trainings/index.blade.php

View

# View - Create View

  1. Go to resources/views/trainings/create.blade.php

View