@extends('admin.layouts.master') @section('title', $title) @section('content')
@include('admin.inc.breadcrumb')

{{ __('dashboard.view') }} {{ $title }}

{{ __('dashboard.title') }}: {{ $row->title }}


{{ __('dashboard.price') }}: {{ $row->price }} @if(!empty($row->old_price)) / {{ $row->old_price }} @endif

{{ __('dashboard.duration') }}: {{ $row->duration }}


{{ __('dashboard.features') }}:
@php $features = json_decode($row->description, true); @endphp @if(isset($features)) @foreach($features as $key => $feature) {{ $key+1 }}. {{ $feature }}
@endforeach @endif

{{ __('dashboard.status') }}: @if( $row->status == 1 ) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif

@endsection