@extends('admin.layouts.app') @section('title', 'Gift Detail') @section('content')

Gift Detail

Name

{{ $gift->name }}

@if ($gift->description)
Description

{{ $gift->description }}

@endif
Price

{{ $gift->price }}

Status
@if ($gift->is_active) Active @else Inactive @endif
@endsection