2024-06-20 16:42:33 +05:45
|
|
|
@extends('backend.template')
|
|
|
|
@section('content')
|
|
|
|
<div class='card'>
|
|
|
|
<div class='card-header d-flex justify-content-between align-items-center'>
|
|
|
|
<h2><?php echo label('View Details'); ?></h2>
|
2024-06-23 17:02:56 +05:45
|
|
|
<?php createButton("btn-primary btn-cancel","","Back to List",route('comments.index')); ?>
|
2024-06-20 16:42:33 +05:45
|
|
|
|
|
|
|
</div>
|
|
|
|
<div class='card-body'>
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-06-23 17:02:56 +05:45
|
|
|
<p><b>Parent Id : </b> <span>{{$data->parent_id}}</span></p><p><b>Users Id : </b> <span>{{$data->users_id}}</span></p><p><b>News Id : </b> <span>{{$data->news_id}}</span></p><p><b>Content : </b> <span>{{$data->content}}</span></p><p><b>Status : </b> <span
|
2024-06-20 16:42:33 +05:45
|
|
|
class="{{$data->status == 1 ? 'text-success' : 'text-danger'}}">{{$data->status == 1 ? 'Active' : 'Inactive'}}</span></p><div class="d-flex justify-content-between">
|
|
|
|
<div>
|
|
|
|
<p><b>Created On :</b> <span>{{$data->created_at}}</span></p>
|
|
|
|
<p><b>Created By :</b> <span>{{$data->createdBy}}</span></p>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<p><b>Updated On :</b> <span>{{$data->updated_at}}</span></p>
|
|
|
|
<p><b>Updated By :</b> <span>{{$data->updatedBy}}</span></p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@endSection
|