@extends('layouts.app')
@section('title', 'Thanks đã gửi')
@section('content')
Các lời cảm ơn bạn đã gửi tới đồng nghiệp.
@if (!empty($cards) && $cards->count())
@foreach ($cards as $c)
Gửi tới: {{ $c->receiver ?? '---' }}
{{ \Carbon\Carbon::parse($c->date)->format('d/m/Y') }}
{{ $c->sent }} thẻ
@endforeach
@else
@endif
@endsection