How to Write PHP Code in Laravel Blade?
Hi Dev,
Now, let's see example of how to write php code in blade file in laravel. This article will give you simple example of how to write php code in laravel view. this example will help you how to write php code in laravel blade. We will look at example of laravel blade write php code.
Here, i will give you simple two way to write core php code in blade file in laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 application. first if using @php that provided by laravel and i will suggest that one and another is using <?php that is using php syntax.
So let's see both example one by one:
Example 1: @php
I will suggest this syntax to use php code:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
@php
$title = "How to Write PHP Code in Laravel Blade? - ItSolutionStuff.com";
$myArray = ['id'=>1,'name'=>'Hardik'];
@endphp
<h1>{{ $title }}</h1>
</body>
</html>
Example 2:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<?php
$title = "How to Write PHP Code in Laravel Blade? - ItSolutionStuff.com";
$myArray = ['id'=>1,'name'=>'Hardik'];
?>
<h1>{{ $title }}</h1>
</body>
</html>
You can use anyone, i hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- Laravel Bail Rule | Stop Validation On First Failure
- How to Create Custom Helper Function in Laravel 7?
- Laravel Disable Registration Route Example
- Laravel Eloquent orWhere() Condition Example
- How to use Soft Delete in Laravel?
- How to use whereHas with orWhereHas in Laravel?
- Laravel Eloquent Concat Two Columns Example