TanchoToplineCargo/resources/views/crud/generated/contacts/show.blade.php
2024-05-05 10:32:49 +05:45

29 lines
2.4 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('contacts.index')); ?>
</div>
<div class='card-body'>
<p><b>Forms Id :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->forms_id}}</span></p><p><b>Name :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->name}}</span></p><p><b>Tagline :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->tagline}}</span></p><p><b>Address :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->address}}</span></p><p><b>Tel :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->tel}}</span></p><p><b>Fax :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->fax}}</span></p><p><b>Email1 :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->email1}}</span></p><p><b>Email2 :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->email2}}</span></p><p><b>Website :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->website}}</span></p><p><b>Google Map :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->google_map}}</span></p><p><b>Facebook :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->facebook}}</span></p><p><b>Hp1 :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->hp1}}</span></p><p><b>Hp2 :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->hp2}}</span></p><p><b>Display Order :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->display_order}}</span></p><p><b>Status :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span
class="{{$data->status == 1 ? 'text-success' : 'text-danger'}}">{{$data->status == 1 ? 'Active' : 'Inactive'}}</span></p><p><b>Remarks :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->remarks}}</span></p><p><b>Createdby :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->createdby}}</span></p><p><b>Updatedby :&nbsp;&nbsp;&nbsp;&nbsp;</b> <span>{{$data->updatedby}}</span></p><div class="d-flex justify-content-between">
<div>
<p><b>Created On :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->created_at}}</span></p>
<p><b>Created By :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->createdBy}}</span></p>
</div>
<div>
<p><b>Updated On :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->updated_at}}</span></p>
<p><b>Updated By :</b>&nbsp;&nbsp;&nbsp;<span>{{$data->updatedBy}}</span></p>
</div>
</div>
</div>
</div>
@endSection