Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 559 Bytes

File metadata and controls

25 lines (16 loc) · 559 Bytes

Codeigniter Blade Starter

Original Codeigniter version 3.1.8 with Blade as a template engine.

Installation

Clone or download this repository and run composer update.

Usage

Just return view helper with two arguments. The first argument is path to blade file, the second argument is data (optional).

// application/controllers/Welcome.php

public function index()
{
    return view('welcome_message');
}

Documentation