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