Skip to content

Instantly share code, notes, and snippets.

@Tynael
Created December 15, 2022 12:05
Show Gist options
  • Save Tynael/0bd4af6d8f073e8839dac3c8bf2b69eb to your computer and use it in GitHub Desktop.
Save Tynael/0bd4af6d8f073e8839dac3c8bf2b69eb to your computer and use it in GitHub Desktop.
How to Set Variables in Blade Templates
<!DOCTYPE html>
@php
$name = 'John';
$last = 'Doe';
@endphp
<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