@extends('admin.layouts.app')
@section('title', 'Package Details')
@section('content')
| Name |
{{ $package->name }}
|
| Description |
{{ $package->description ?? 'N/A' }} |
| Price |
{{ number_format($package->package_price, 2) }} |
| Duration |
{{ ucfirst($package->duration) }} |
| Status |
{{ ucfirst($package->status) }}
|
| Withdraw Limit |
{{ number_format($package->withdraw_limit, 2) }} |
| Space Limit |
{{ $package->space_limit }} |
| Product Limit |
{{ $package->product_limit }} |
| Job Limit |
{{ $package->job_limit }} |
| Course Limit |
{{ $package->course_limit }} |
| Event Limit |
{{ $package->event_limit }} |
Features
| Feature |
Status |
| Verified Badge |
@if($package->verified_badge)
Yes
@else
No
@endif
|
| Edit Post |
@if($package->edit_post)
Yes
@else
No
@endif
|
| Business Page |
@if($package->business_page)
Yes
@else
No
@endif
|
Timestamps
| Created At |
{{ $package->created_at->format('d M Y H:i:s') }} |
| Updated At |
{{ $package->updated_at->format('d M Y H:i:s') }} |
@if($package->deleted_at)
| Deleted At |
{{ $package->deleted_at->format('d M Y H:i:s') }} |
@endif
@endsection