@extends('layouts.modules') @section('title', trans_choice('general.modules', 2)) @section('new_button') {{ trans('modules.api_key') }} {{ trans('modules.my_apps') }} @endsection @section('content') @include('partials.modules.bar')

{{ $module->name }}

{!! $module->description !!} @if ($module->screenshots || $module->video) video) @php if (strpos($module->video->link, '=') !== false) { $code = explode('=', $module->video->link); $code[1]= str_replace('&list', '', $code[1]); } @endphp :video="'{{ $code[1] }}'" @endif :screenshots="{{ json_encode($module->screenshots) }}"> @endif

{{ trans_choice('general.actions', 1) }}

@if ($module->price == '0.0000') {{ trans('modules.free') }} @else {!! $module->price_prefix !!} @if (isset($module->special_price)) {{ $module->price }} {{ $module->special_price }} @else {{ $module->price }} @endif {!! $module->price_suffix !!} @endif

{{ trans('modules.about') }}

@if ($module->vendor_name) @endif @if ($module->version) @endif @if ($module->created_at) @endif @if ($module->updated_at) @endif @if ($module->categories) @endif
{{ trans_choice('general.developers', 1) }} {{ $module->vendor_name }}
{{ trans('footer.version') }} {{ $module->version }}
{{ trans('modules.added') }} @date($module->created_at)
{{ trans('modules.updated') }} {{ Date::parse($module->updated_at)->diffForHumans() }}
{{ trans_choice('general.categories', (count($module->categories) > 1) ? 2 : 1) }} @foreach ($module->categories as $module_category) {{ $module_category->name }}
@endforeach
@if ($module->purchase_faq) @endif @endsection @push('scripts_start') @endpush