Skip to content

Instantly share code, notes, and snippets.

@Tynael
Last active December 15, 2022 12:19
Show Gist options
  • Save Tynael/9f20c424c308f1f99cc33ba1974d8b3c to your computer and use it in GitHub Desktop.
Save Tynael/9f20c424c308f1f99cc33ba1974d8b3c to your computer and use it in GitHub Desktop.
How to Set Variables in Blade Templates
<!DOCTYPE html>
<!-- ⚠️ DO NOT USE THIS ⚠️ -->
<?php
$name = 'John';
$last = 'Doe';
?>
<body>
<div>
<h1>{{ $name }}</h1>
<h1>{{ $last }}</h1>
</div>
</body>
</html>
@Tynael
Copy link
Author

Tynael commented Dec 15, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment