@extends('panel.layout.app', ['disable_tblr' => true]) @section('title', __('AI Voice Clone')) @section('titlebar_actions') {{ __('Add New') }} @endsection @section('content')

{{ __('Voice training') }}

{{ __('Name') }} {{ __('Voice id') }} {{ __('Status') }} {{ __('Created At') }} {{ __('Actions') }} @foreach ($items as $item) {{ $item->name }} {{ $item->voice_id }} {{ $item->status ? __('Active') : __('Inactive') }}

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

@if ($app_is_demo) @else @endif @endforeach
{{ $items->links() }}
@endsection