New to Laravel. Going through some tutorials and I'm working with a Bootstrap template. On the "welcome.blade.php" file, there's a section that looks like this:
<!-- Section: intro -->
<section id="intro" class="intro">
<div class="intro-content">
<div class="container">
From what I understand, you're going to use a layout and at one point you'll have a "@yield('content')," which is Blade's way of allowing for content coming from a section called "content."
But I've not found anything in the instructional material that references "id's."
What is the significance of a "section id?"
The <section> tag is HTML5.
https://www.w3schools.com/tags/tag_section.asp provides a good <section> tag overview.