@extends('admin.layouts.app')
@section('title', 'Gift Detail')
@section('content')
{{-- Image --}}
{{-- Details --}}
-
Name:
{{ $gift->name }}
@if ($gift->description)
-
Description:
{{ $gift->description }}
@endif
-
Price:
{{ $gift->price }} Points
-
Status:
@if ($gift->is_active)
Active
@else
Inactive
@endif
@endsection