@extends('super_admins.layouts.master') @section('title') View Pricing Plan @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

Pricing Plan

Title

{{ $pricing_plan->name ? $pricing_plan->name : '--' }}

Image

@if ($pricing_plan->image) {{ $pricing_plan->slug }} @else -- @endif

Type

{{ $pricing_plan->type ? $pricing_plan->type : '--' }}

Default

{{ $pricing_plan->is_default ? 'Yes' : 'No' }}

Status

{{ $pricing_plan->is_active ? 'Active' : 'Inactive' }}

Created At

{{ date_format($pricing_plan->created_at, 'd-m-Y') }}

Description

{!! $pricing_plan->description !!}

@endsection @section('scripts') @endsection