OwlCyberSecurity - MANAGER
Edit File: 6c25644fa5c897b9a0df419a884f0156b53cefba.php
<div class="row"> <div class="col-md-5"> <img src="<?php echo e(asset('images')); ?>/blog/<?php echo e($blog->display_image); ?>" class="img-responsive"><br> <table class="table"> <tr> <th>DATE POSTED:</th> <td><?php echo e(\Carbon\Carbon::parse($blog->created_at)->format('l d M, Y')); ?></td> </tr> <tr> <th>TIME POSTED:</th> <td><?php echo e(\Carbon\Carbon::parse($blog->created_at)->format('H:ia')); ?></td> </tr> <tr> <th>CATEGORY:</th> <td><?php echo e($blog->category); ?></td> </tr> <tr> <th>STATUS:</th> <td><?php echo e($blog->status); ?>ed</td> </tr> </table> </div> <div class="col md-7" style="padding: 0px 10px;"> <h4>Title: <?php echo e($blog->title); ?></h4> <hr> <div style="padding: 0px 10px; text-align: justify;"> <?php echo $blog->content; ?> </div> </div> </div>