@extends('layouts.admin') {{-- Or your AppManager specific admin layout --}} @section('title', 'Script Details: ' . $script->name) @section('header_title', 'Script Details: ' . $script->name) @section('content')

{{ $script->name }}

Slug: {{ $script->slug }}

Details

Current Version
{{ $script->current_version ?: 'N/A' }}
Status
{{ ucfirst($script->status) }}
Boilerplate Core
{{ $script->is_boilerplate_core ? 'Yes' : 'No' }}
Envato Item ID
{{ $script->envato_item_id ?: 'N/A' }}
Created At
{{ $script->created_at->format('M d, Y H:i A') }}
Last Updated
{{ $script->updated_at->format('M d, Y H:i A') }}

Description

{!! $script->description ? nl2br(e($script->description)) : '

No description provided.

' !!}

Changelog

@if($script->changelog) {!! \Illuminate\Support\Str::markdown(e($script->changelog)) !!} @else

No changelog provided.

@endif

Associated Licenses

@if($script->licenses()->count() > 0) View {{ $script->licenses()->count() }} License(s) @else

No licenses associated with this script yet.

Create First License @endif
@endsection