@extends('layouts.app')
@section('content')
{{-- Page Header --}}
| {{ __('ID') }} | {{ __('Name') }} | {{ __('Description') }} | {{ __('Payable Amount') }} | {{ __('Discount Amount') }} | {{ __('Plan Items') }} | {{ __('Sustain Days') }} | {{ __('Thumbnail') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|---|---|---|
| {{ $plan->id }} | {{ Illuminate\Support\Str::limit($plan->name, 10, '...') }} | {{ $plan->description ? Illuminate\Support\Str::limit($plan->description, 10) : 'N/A' }} | {{ $plan->payable_amount && $plan->payable_amount > 0 ? currencyFormat($plan->payable_amount) : '0' }} | {{ $plan->discount_amount && $plan->discount_amount > 0 ? currencyFormat($plan->discount_amount) : '0' }} |
|
{{ $plan->sustain_days }} |
@if ($plan->thumbnail)
|
@can('plans.edit')
|
| {{ __('No Boost Plans Found') }} | ||||||||