@extends('layouts.admin') @section('admin-content')

{{ $programmingLanguage->name }}

{{ __('app.programming_language_details') }}

{{ __('app.language_overview') }}

{{ $programmingLanguage->name }}
@if($programmingLanguage->icon) @else @endif

{{ $programmingLanguage->name }}

{{ __('app.language_name') }}

{{ $programmingLanguage->products()->count() }}

{{ __('app.total_products') }}

{{ $programmingLanguage->products()->where('is_active', true)->count() }}

{{ __('app.active_products') }}

@if($programmingLanguage->hasTemplateFile()) {{ __('app.custom') }} @else {{ __('app.default') }} @endif

{{ __('app.template_status') }}

{{ __('app.language_details') }}

@if($programmingLanguage->icon) @else @endif

{{ $programmingLanguage->name }}

{{ $programmingLanguage->slug }}

@if($programmingLanguage->is_active) {{ __('app.Active') }} @else {{ __('app.inactive') }} @endif
@if($programmingLanguage->description)

{{ Str::limit($programmingLanguage->description, 200) }}

@endif
{{ __('app.extension') }}: {{ $programmingLanguage->file_extension ?: __('not_specified') }}
{{ __('app.Products') }}: {{ $programmingLanguage->products()->count() }}
{{ __('app.sort_order') }}: #{{ $programmingLanguage->sort_order }}
{{ __('app.statistics') }}
{{ __('app.total_products') }}: {{ $programmingLanguage->products()->count() }}
{{ __('app.active_products') }}: {{ $programmingLanguage->products()->where('is_active', true)->count() }}
{{ __('app.template_status') }}: @if($programmingLanguage->hasTemplateFile()) {{ __('app.custom') }} @else {{ __('app.default') }} @endif
{{ __('app.Created_at') }}: {{ $programmingLanguage->created_at->format('M d, Y') }}
@endsection