@extends('layouts.app') @section('content') {{-- Page Header --}} {{-- Main Card --}}
{{-- Left: Thumbnail --}}
{{ __('Plan Thumbnail') }}
@if ($plan->thumbnail && $plan->thumbnail->src) {{ $plan->name }} @else
{{ __('No image uploaded') }}
@endif
{{-- Right: Details --}}
{{-- Plan Name --}}
{{ __('Plan Name') }}

{{ $plan->name }}

{{-- Payable Amount --}}
{{ __('Payable Amount') }}

{{ $plan->payable_amount }}

{{-- Discount Amount --}}
{{ __('Discount Amount') }}

{{ $plan->discount_amount ?? '-' }}

{{-- Sustain Days --}}
{{ __('Sustain Days') }}

{{ $plan->sustain_days }}

{{-- Plan Items --}}
{{ __('Plan Items') }} @if (is_array($planItems))
@foreach ($planItems as $item)
{{ $loop->iteration }}. {{ $item }}
@endforeach
@else

-

@endif
{{-- Description --}}
{{ __('Description') }}

{{ $plan->description }}

@endsection