@extends('layouts.admin') @section('content')

{{ $package->name }}

Category: {{ $package->category ? $package->category->name : 'N/A' }}

Description: {!! $package->description !!}

Price: {{ $package->is_call_for_pricing ? 'Call for Pricing' : '$' . number_format($package->price, 2) }}

Featured: {{ $package->featured ? 'Yes' : 'No' }}

@if($package->image)

Image:

{{ $package->name }} @endif
Edit
@csrf @method('DELETE')
Back
@endsection