PHP Classes

File: app/modules/blog/views/post/view.php

Recommend this page to a friend!
  Classes of Oleg Lunegov   MicroPHP Framework   app/modules/blog/views/post/view.php   Download  
File: app/modules/blog/views/post/view.php
Role: Example script
Content type: text/plain
Description: Example script
Class: MicroPHP Framework
MVC framework for Web or command line applications
Author: By
Last change: Update of app/modules/blog/views/post/view.php
Date: 2 months ago
Size: 228 bytes
 

Contents

Class file image Download
<?php

/** @var \App\Modules\Blog\Models\Blog $model */

use Micro\Web\Html\Html;

echo
Html::href('?????', '/blog/post');
echo
Html::heading(1, $model->name);
echo
Html::openTag('p'), $model->content, Html::closeTag('p');