38 lines
1.8 KiB
PHP
38 lines
1.8 KiB
PHP
|
@extends('layouts.app')
|
||
|
@section('content')
|
||
|
<div class='card'>
|
||
|
<div class="card-header align-items-center d-flex">
|
||
|
<h5 class="card-title flex-grow-1 mb-0">View Detail</h5>
|
||
|
<div class="flex-shrink-0">
|
||
|
<a href="{{ route('cities.index') }}" class="btn btn-success waves-effect waves-light"><i
|
||
|
class="ri-add-fill me-1 align-bottom"></i> Back to List</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class='card-body'>
|
||
|
<p><b>Districts Id : </b> <span>{{ $data->districts_id }}</span></p>
|
||
|
<p><b>Title : </b> <span>{{ $data->title }}</span></p>
|
||
|
<p><b>Alias : </b> <span>{{ $data->alias }}</span></p>
|
||
|
<p><b>Description : </b> <span>{{ $data->description }}</span></p>
|
||
|
<p><b>Display Order : </b> <span>{{ $data->display_order }}</span></p>
|
||
|
<p><b>Status : </b> <span
|
||
|
class="{{ $data->status == 1 ? 'text-success' : 'text-danger' }}">{{ $data->status == 1 ? 'Active' : 'Inactive' }}</span>
|
||
|
</p>
|
||
|
<p><b>Remarks : </b> <span>{{ $data->remarks }}</span></p>
|
||
|
<p><b>Createdby : </b> <span>{{ $data->createdby }}</span></p>
|
||
|
<p><b>Updatedby : </b> <span>{{ $data->updatedby }}</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
|