29 lines
2.9 KiB
PHP
29 lines
2.9 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('campaigns.index')); ?>
|
|
|
|
</div>
|
|
<div class='card-body'>
|
|
|
|
|
|
|
|
<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>Details : </b> <span>{{$data->details}}</span></p><p><b>Cover Photo : </b> <span>{{$data->cover_photo}}</span></p><p><b>Thumb : </b> <span>{{$data->thumb}}</span></p><p><b>Starts : </b> <span>{{$data->starts}}</span></p><p><b>Ends : </b> <span>{{$data->ends}}</span></p><p><b>Success Message : </b> <span>{{$data->success_message}}</span></p><p><b>Sms Message : </b> <span>{{$data->sms_message}}</span></p><p><b>Coupon Codes : </b> <span>{{$data->coupon_codes}}</span></p><p><b>Offered Choices : </b> <span>{{$data->offered_choices}}</span></p><p><b>Og Image : </b> <span>{{$data->og_image}}</span></p><p><b>Seo Title : </b> <span>{{$data->seo_title}}</span></p><p><b>Seo Keywords : </b> <span>{{$data->seo_keywords}}</span></p><p><b>Seo Description : </b> <span>{{$data->seo_description}}</span></p><p><b>Meta Tags : </b> <span>{{$data->meta_tags}}</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
|