Я хотел бы визуализировать представление и вернуть его с JSON в моем контроллере, как renderView в Symfony.
//use Slim\Container;
protected $ci;
public function __construct(Container $ci)
{
$this->ci = $ci;
}
public function AnalyseFacture(Request $request, Response $response,$args){
$db = $this->ci->dbLeak;
$clients = self::RecuperationFacture($db);
$data = $this->ci->view->render($response, 'envoiefacture/resultat-ajax.twig', ['liste' => $clients]);
return $response->withJson(['data' => $data]);
}