@extends('layouts.app')
@section('title', 'Thanks đã nhận')
@section('content')
Các lời cảm ơn mà đồng nghiệp đã gửi đến bạn.
@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