@extends('layouts.app') @section('title', $plan->name) @section('content')

{{ $plan->name }} — {{ money($plan->price) }}

{{ $plan->telecomCompany?->name }} · {{ $plan->plan_type->label() }}

@can('plans.edit'){{ __('messages.edit') }}@endcan

{{ __('messages.price_history') }}

@foreach($plan->priceHistory as $h)@endforeach
{{ __('messages.old_price') }}{{ __('messages.new_price') }}{{ __('messages.effective_date') }}{{ __('messages.user') }}{{ __('messages.reason') }}
{{ money($h->old_price) }}{{ money($h->new_price) }}{{ $h->effective_date?->toDateString() }}{{ $h->user?->name }}{{ $h->reason }}
@endsection