<form id="4h1ab"><optgroup id="4h1ab"></optgroup></form>

    <dfn id="4h1ab"></dfn>
      <abbr id="4h1ab"><var id="4h1ab"></var></abbr><menuitem id="4h1ab"></menuitem>
      <abbr id="4h1ab"><listing id="4h1ab"></listing></abbr>

      <nobr id="4h1ab"></nobr>
      <samp id="4h1ab"></samp>
    1. @yield('content') <\/div> <\/body> <\/html><\/p>\n

      Here we define a basic HTML template and use the @yield directive of the Blade template engine to define two areas: title and content. In this way, the basic template can be inherited in specific view files and specific content can be defined. <\/p>\n

      For example, you can add the following code to the resources\/views\/users\/index.blade.php file: <\/p>\n

      @extends('users.show') @section('title', ' User list') @section('content')

      User list<\/h1>