Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created July 29, 2019 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/4119aeb4a8d241f99e1535229ee683b8 to your computer and use it in GitHub Desktop.
Save parzibyte/4119aeb4a8d241f99e1535229ee683b8 to your computer and use it in GitHub Desktop.
<?php namespace App\Controllers;
use App\Models\UserModel;
class Home extends BaseController
{
public function index()
{
return view('welcome_message');
}
public function hola()
{
return view('hola');
}
//--------------------------------------------------------------------
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment