Laravel Course

- Passing Data to Views
- Sharing Data with all Views

Understanding Views

Views (or Templates) in Laravel are stored in the "resources/views" directory. They are '.php' files that describe how some output should look, and can contain HTML, CSS, JavaScript, and PHP content.
In Laravel, there are two formats of view you can use: Blade (with ".blade.php" extension in file name) rendered with the Blade engine; or simple ".php" (which will not parse the Blade Template statements).

- Example of a simple Blade view:
1. Copy the following code and save it in a resources/views/light.blade.php file.
<html>
<body>
<h1>View is an effect, Vision is the source</h1>
</body>
</html>
2. Add the following line in routes/web.php file to set the route for the above view.
Route::get('/light', function(){
 return view('light');
});
3. Visit the following URL to see the output of the view.
//localhost:8000/light
- The output will appear as shown in the following image.
laravel Simple View
If the view file is into a sub-folder in "resources/views" directory, for example "resources/views/pages/name.blade.php", add the sub-folder name before file name:
return view('pages.name');
If you need to determine if a view exists, you may use the exists() method of the View facade. The method return true if the view exists:
use Illuminate\Support\Facades\View;

if(View::exists('pages.test')){
 //
}

Passing Data to Views

You can use variables in the view template file, with this syntax: {{$variable_name}} , then pass an array with key/value pairs as a second argument in the view() method.
The "key" in array must be the same as the name of the variable in template.

- Example of a simple Blade view:
1. Copy the following code and save it in a resources/views/greeting.blade.php file.
<html>
<head>
<title>{{$title}}</title>
</head>
<body>
<h1>Hello {{$name}}</h1>
</body>
</html>
2. Add the following line in routes/web.php file to set the route for the above view.
Route::get('/greeting', function(){
 $vars =['title'=>'Greetings', 'name'=>'Me'];
 return view('greeting', $vars);
});
3. Visit the following URL to see the output of the view.
//localhost:8000/greeting
- The output will appear as shown in the following image.
laravel Greetings View

Sharing Data with all Views

If you want to pass same data to all the views, use the view()->share() method.
The share() method will take two arguments: key and value.
Typically share() method can be called from boot() method of service provider.
We can use any service provider, like: AppServiceProvider or our own service provider.

- Example:
1. Create two view files: test.blade.php and test2.blade.php with the same code, in the "resources/views/" directory.
- Copy the following code in both the files.
<html>
<body>
<h1>Share {{$state}}</h1>
<h2>Receive {{$gift}}</h2>
</body>
</html>
2. Change the code of boot() method in the file app/Providers/AppServiceProvider.php as shown below. (Here, we have used the share() method, and the data that we have added will be shared with all the views).
<?php
namespace App\Providers;

use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider {
 //Bootstrap any application services.
 //@return void
 public function boot(){
 view()->share('state', 'Peace');
 view()->share('gift', 'Love');
 }

 //Register any application services.
 //@return void
 public function register(){
 //
 }
}
3. Add the following lines in routes/web.php file.
Route::get('/test', function(){
 return view('test');
});
Route::get('/test2', function(){
 return view('test2');
});
4. Visit the following URLs:
//localhost:8000/test

//localhost:8000/test2
- The output for both URLs will appear as shown in the following image.
laravel Greetings View

- Documentation: Laravel - Views

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
What attribute makes a radio button or checkbox input selected?
checked="checked" selected="selected" disabled="disabled"
<input type="checkbox" name="a_name" value="value" checked="checked" />
What CSS value scales the background image to the largest size contained within the element?
repeat-x contain linear-gradient
#id {
  background:url("path_to_image.png");
  background-size:contain;
  background-repeat:no-repeat;
}
What operator is used to determine the rest of the division of two numbers?
% * /
var rest8_7 = 8 % 7;
alert(rest8_7);
Indicate the PHP function that rounds a number up to the next highest integer.
floor() ceil() abs()
$nr = ceil(3.5);
echo $nr;        // 4
Laravel Views

Last accessed pages

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (140497)
  2. A simple script ActionScript 3 (4416)
  3. Check the file type before Upload (9307)
  4. SHA1 Encrypt data in JavaScript (35501)
  5. Ajax-PHP File Manager (10274)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (72)
  2. Read Excel file data in PHP - PhpExcelReader (11)
  3. ActionScript 3 Lessons (7)
  4. The Mastery of Love (7)
  5. PHP-MySQL free course, online tutorials PHP MySQL code (6)