31 lines
1.3 KiB
PHP
31 lines
1.3 KiB
PHP
|
@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>
|
||
|
<?php createButton('btn-primary btn-cancel', '', 'Back to List', route('provinces.index')); ?>
|
||
|
|
||
|
</div>
|
||
|
<div class='card-body'>
|
||
|
|
||
|
|
||
|
|
||
|
<p><b>Province Name : </b> <span>{{ $data->title }}</span></p>
|
||
|
<p><b>Province Nepali Name : </b> <span>{{ $data->province_nepali_name }}</span></p>
|
||
|
<p><b>Alias : </b> <span>{{ $data->alias }}</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
|