function saframework()
 {
     $view = View::build('items:viewall.php')->setVariables('title', 'o mej framework into the world for PHP')->setVariables('pippo', 'SONO SAFRAMEWORK')->setVariables('pluto', 'PHYTON CIO MAGNAMM, COMM E COLOMBIAN!');
     return $view;
 }
 function delete($id = null)
 {
     $view = View::build('items:delete.php')->setVariables('title', 'titolo')->setVariables('todo', $this->item->where('id', '=', $id)->delete());
     return $view;
 }
 function index(Plugin $plugin, Request $request)
 {
     $view = View::build('personas:index.php')->setVariables('pippo', 'SONO PERSONAS')->setVariables('pluto', 'dsa');
     return $view;
 }