return View::make('myviewfolder.myview', compact('view1','view2','view3'));
// compact() is a php function that allows you to create an array with variable names and their values
<?php
$city = "San Francisco";
$state = "CA";
$event = "SIGGRAPH";
$location_vars = array("city", "state");
$result = compact("event", $location_vars);
print_r($result);
?>
The above example will output:
Array
(
[event] => SIGGRAPH
[city] => San Francisco
[state] => CA
)
// Like the post if you found it usefull and help other devs to find the good answer
Code Example |
---|
Php :: laravel map the output of the api |
Php :: parse php |
Php :: date subtraction php |
Php :: login form tutorialpoint |
Php :: array_diff php |
Php :: PHP OOP - Constructor |
Php :: wordpress run php code in page |
Php :: php artisan key:generate error |
Php :: laravel check if query builder is empty |
Php :: How to insert header in php |
Php :: delete record without a page refresh with ajax in php |
Php :: install php-mysql |
Php :: laravel get() |
Php :: getting routes in middleware laravel |
Php :: php regex named groups |
Php :: what is php file |
Php :: php online test |
Php :: wamp php version update |
Php :: oop php |
Php :: dynamic variable in php |
Php :: Convert an Integer Into a String in PHP |
Php :: if one condition |
Php :: laravel wherein like |
Php :: how to execute php in linux |
Php :: image laravel |
Php :: route group laravel 8 |
Php :: data XML |
Php :: ezSql PDO Connection |
Php :: sample test tinker php artisan |
Php :: codeigniter admin panel with crud generator - |