Send data to views
Send data from Controllers to Views.
$ app/controllers/UsersController.php<?php
use Libs\BoosterORM\BoosterORM;
class UsersController
{
public function index()
{
$user = 'John Doe';
return view('modules.users.index', 'user', $user);
}Last updated