@extends("backend.layouts.app") @section("title") View Package - {{ $package->name }} @endsection @section("breadcrumbs") Packages View Package @endsection @section("content") View Package - {{ $package->name }} Back

{{ $package->name }}


Price: AUD {{ $package->price }}

Billing Cycle: {{ ucfirst($package->billing_cycle) }}

Status: {{ ucfirst($package->status) }}

About: {{ $package->about }}

Features:
@foreach(explode('
  • ', strip_tags(htmlspecialchars_decode($package->features), '
  • ')) as $feature) @php $clean_feature = trim(str_replace(['</li>', ' ', '\\r', '\\n', '\\t', '
  • ', '
  • ', '"'], '', $feature)); @endphp @if(!empty($clean_feature))
  • {{ $clean_feature }}
  • @endif @endforeach
    Edit Package
    @csrf @method('DELETE')
    @endsection