/
home
/
techb158
/
dev.balacoffee.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Contracts
/
View
/
/home/techb158/dev.balacoffee.com/vendor/laravel/framework/src/Illuminate/Contracts/View
mkdir
upload
Name
Size
Mode
Actions
Engine.php
265
0644
edit
dl
rm
Factory.php
1933
0644
edit
dl
rm
View.php
541
0644
edit
dl
rm
Edit:
/home/techb158/dev.balacoffee.com/vendor/laravel/framework/src/Illuminate/Contracts/View/View.php
(541B)
<?php namespace Illuminate\Contracts\View; use Illuminate\Contracts\Support\Renderable; interface View extends Renderable { /** * Get the name of the view. * * @return string */ public function name(); /** * Add a piece of data to the view. * * @param string|array $key * @param mixed $value * @return $this */ public function with($key, $value = null); /** * Get the array of view data. * * @return array */ public function getData(); }
Save