@extends('layouts.account') @section('page-title', 'Gifts') @section('content')
@forelse($receive_gifts as $gift)

{{ $gift->by_user->name }}

@empty

You have no gift available.

@endforelse @forelse($sent_gifts as $gift)

{{ $gift->to_user->name }}

@empty

You have not sent gift yet!

@endforelse
@endsection