@extends('dashboard.layouts.app') @section('title', __('dashboard.View Track Pricing')) @section('page_heading', __('dashboard.View Track Pricing')) @section('breadcrumb')
ID | {{ $pricing->id }} |
---|---|
{{ __('dashboard.Pricing Type') }} | {{ $pricing->pricingType->name }} |
{{__('dashboard.Levels Number')}} | {{ $pricing->levels_number }} |
{{__('dashboard.Total Price')}} | {{ $pricing->total_price }} |
{{ __('dashboard.Has Discount') }} | @if($pricing->has_discount) {{ __('dashboard.Yes') }} @else {{ __('dashboard.No') }} @endif |
{{ __('dashboard.Discount Start Date') }} | {{ $pricing->discount_start_date ? $pricing->discount_start_date->format('Y-m-d H:i') : '-' }} |
{{ __('dashboard.Discount End Date') }} | {{ $pricing->discount_end_date ? $pricing->discount_end_date->format('Y-m-d H:i') : '-' }} |
{{ __('dashboard.Discount Title') }} | {{ $pricing->discount_title ?? '-' }} |
{{ __('dashboard.Discount Description') }} | {{ $pricing->discount_description ?? '-' }} |
{{ __('dashboard.Discount Type') }} | {{ $pricing->discount_type == 'percentage' ? __('dashboard.Percentage') : __('dashboard.Fixed') }} |
{{ __('dashboard.Discount Amount') }} | {{ $pricing->discount_type == 'percentage' ? $pricing->discount_amount . '%' : $pricing->discount_amount }} |
{{__('dashboard.Discounted Price')}} | {{$pricing->discounted_price}} |
{{ __('dashboard.Created At') }} | {{ $pricing->created_at }} |
{{ __('dashboard.Updated At') }} | {{ $pricing->updated_at }} |