Vous êtes connecté en tant que anonymous Se Deconnecter
vendor/illuminate/contracts/View/Engine.php
4f5a31d2
 <?php
 
 namespace Illuminate\Contracts\View;
 
 interface Engine
 {
     /**
      * Get the evaluated contents of the view.
      *
      * @param  string  $path
      * @param  array   $data
      * @return string
      */
     public function get($path, array $data = []);
 }