PHP Classes

File: app/controllers/HomeController.php

Recommend this page to a friend!
  Classes of ikhsan   Slim Starter   app/controllers/HomeController.php   Download  
File: app/controllers/HomeController.php
Role: Application script
Content type: text/plain
Description: welcome page controller
Class: Slim Starter
Build MVC Web applications based on Slim framework
Author: By
Last change: Update of app/controllers/HomeController.php
Date: 2 months ago
Size: 217 bytes
 

Contents

Class file image Download
<?php

Class HomeController extends BaseController
{

    public function
welcome()
    {
       
$this->data['title'] = 'Welcome to Slim Starter Application';
       
App::render('welcome.twig', $this->data);
    }
}