@extends('layouts.customer') @section('content')
{{ $message }}
| # | Gift Card No | Gift Card | Is Sold | Is Assigned | Created At | {{ __('Action') }} |
|---|---|---|---|---|---|---|
| {{ ++$i }} | {{ $giftCard->custom_id ?? '' }} |
|
{{ $giftCard->is_sold ? 'Sold' : 'Not Sold' }} | {{ $giftCard->is_assigned ? 'Assigned' : 'Un-Assigned' }} | {{ \Carbon\Carbon::parse($giftCard->created_at)->format('F j, Y g:i A') }} |
|