@extends('admin.layouts.master') @section('title') User Gift Management | @endsection @section('content')
# Id | User Name | Gift Type | Gift | Claimed Status | Validation Date |
---|---|---|---|---|---|
{{ $gift->id }} | {{ $gift->user->name ?? 'N/A' }} | @switch($gift->discount_type) @case('lesson') Lesson @break @case('percentage') Percentage @break @case('money') Money @break @case('item') Gift Item @break @default N/A @endswitch | @if ($gift->discount_type == 'lesson') {{ $gift->lesson_number }} @elseif ($gift->discount_type == 'percentage') {{ $gift->discount_in_percentage }}% @elseif ($gift->discount_type == 'money') ${{ $gift->discount_in_money }} @elseif ($gift->discount_type == 'item') {{ $gift->gift_item }} @else N/A @endif | {{ $gift->is_claimed ? 'Claimed' : 'Not Claimed' }} | {{ $gift->validate_time ? $gift->validate_time : 'Null' }} |
No data found |