All Laravel view files need to store at resources folder.
Blade Document: https://laravel.com/docs/9.x/blade
Blade template always have blade extension
For ex:
Home.php as Home.blade.php
{{}} ==> it will print variable data simply act like PHP echo statements.
@directive it is used for template or nested template, loops and conditions statements
By default, Blade
{{ }}
statements are automatically sent through PHP's htmlspecialchars
function to prevent XSS attacks. If you do not want your data to be escaped, you may use the following syntax:
Comments
Post a Comment
Thank you :)