Created
November 11, 2016 22:39
-
-
Save taylorotwell/03ba853aa9ee1d1bf197c42dcaa559e3 to your computer and use it in GitHub Desktop.
Components And Slots
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="alert"> | |
{{ $slot }} | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@component('zonda.layout') | |
@slot('title') | |
Customized Page Title | |
@endslot | |
<div> | |
@component('zonda.alert') | |
This is the alert message here. | |
@endcomponent | |
This is the content that gets injected into the page. | |
</div> | |
@endcomponent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>{{ $title or 'Default Title' }}</title> | |
<style> | |
div.alert { | |
color: red; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>My Application</h1> | |
<div class="container"> | |
{{ $slot }} | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment