@extends('dashboard.layouts.master') @section('title', __('backend.show_interest')) @section('content')
| {!! __('backend.interest_name') !!} | {{ isset($interest->name) ? $interest->name : '-' }} |
|---|---|
| Total Count | {{ $interest->user_interest_count ?? 0 }} |
| {{ __('backend.status') }} | @if ($interest->status == 1) {{ __('backend.active') }} @elseif($interest->status == 0) {{ __('backend.deactive') }} @elseif($interest->status == 2) {{ __('backend.deleted') }} @else - @endif |
| {{ __('backend.created_date') }} | {{ $createDate }} |