Views
Sprnva is a MVC approach so we also have a Views where the beautiful stacks of graphical illustration is processed.
<?php
namespace App\Controllers;
class UsersController
{
public function index(){
return view('/index');
}
}Last updated