|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/parasoffline.edukrypt.in/application/views/demo/ |
Upload File : |
<table class="table table-striped table-bordered"> <tr> <th>Title: </th> <td><?php echo $post->title; ?></td> </tr> <tr> <th>Content: </th> <td><?php echo $post->content; ?></td> </tr> <tr> <th>Publish Time: </th> <td><?php echo $post->publish_time; ?></td> </tr> <tr> <th>Author: </th> <td><?php echo $post->author->first_name; ?> <?php echo $post->author->last_name; ?></td> </tr> <tr> <th>Category: </th> <td><?php echo $post->category->title; ?></td> </tr> <tr> <th>Tags: </th> <td> <?php foreach ($post->tags as $tag): ?> <span class="label label-primary"><?php echo $tag->title; ?></span> <?php endforeach; ?> </td> </tr> </table> <a class="btn btn-primary" href="demo/blog_posts">Back</a>