@extends('layouts.app')
@section('title', 'Thanks đã nhận')
@section('content')
{{-- Hero Section – same look as dashboard --}}
Các lời cảm ơn mà đồng nghiệp đã gửi đến bạn.
{{-- Summary Card – simple total count --}}
{{-- Cards List – use simple styled cards --}}
@if (!empty($cards) && $cards->count())
@foreach ($cards as $c)
Từ: {{ $c->sender ?? '---' }}
{{ \Carbon\Carbon::parse($c->date)->format('d/m/Y') }}
{{ $c->received }} thẻ
@endforeach
@else
@endif
@endsection