@extends('adminlte::page')
@section('title', 'Like #' . $like->id)
@section('content_header')
@stop
@section('content')
- ID
- {{ $like->id }}
- Member
-
{{ $like->member->name }}
({{ $like->member->email }})
- Liked Member
-
{{ $like->likedMember->name }}
({{ $like->likedMember->email }})
- Action
-
@php
$badgeClass = match($like->action) {
'like' => 'success',
'super_like' => 'primary',
'pass' => 'secondary',
default => 'secondary',
};
@endphp
{{ ucfirst(str_replace('_', ' ', $like->action)) }}
- Mutual Match
-
@if($like->is_match)
Yes
@else
No
@endif
- Matched At
- {{ $like->matched_at?->format('M d, Y H:i') ?? '—' }}
- Created
- {{ $like->created_at->format('M d, Y H:i') }}
- Last Updated
- {{ $like->updated_at->format('M d, Y H:i') }}
@stop