@extends('panel.layout.app') @section('title', __('My Templates')) @section('titlebar_subtitle', __('Manage Your Templates')) @section('titlebar_actions') @if (setting('user_ai_writer_custom_templates', 0)) {{ __('Create Template') }} @endif @endsection @section('content')
{{ __('Status') }} {{ __('Template Name') }} {{ __('User') }} {{ __('Template Description') }} {{ __('Package') }} {{ __('Updated At') }} {{ __('Actions') }} @foreach ($list as $entry) $entry->active == 1, 'passive' => $entry->active == 0, ]) > {{ __($entry->title) }} {{ $entry?->user?->name ?: __('System') }} {{ __($entry->description) }}

{{ date('j.n.Y', strtotime($entry->updated_at)) }} {{ date('H:i:s', strtotime($entry->updated_at)) }}

@endforeach
@endsection @push('script') @endpush