@extends('layouts.superadmin') @section('title', __('Prompts')) @section('style') @endsection @section('content')
Prompts AWR Studio AI
@foreach ($prompts as $prompt) @endforeach
# Intention Instruction Objectif Actions
{{ $loop->iteration }} {{-- Version mobile : limit à 10 caractères --}} {!! $prompt->intention->name !!} {{-- Version tablette / desktop : texte complet --}} {!! $prompt->intention->name !!} {{-- Version mobile : limit à 10 caractères --}} {!! Str::limit(strip_tags($prompt->instruction), 15) !!} {{-- Version tablette / desktop : texte complet --}} {!! $prompt->instruction !!} {{-- Version mobile : limit à 10 caractères --}} {!! Str::limit($prompt->objectif, 10) !!} {{-- Version tablette / desktop : texte complet --}} {{ $prompt->objectif }}
{{-- Modal de création --}} {{-- Modal de suppression --}} {{-- Modal Voir Prompt --}} {{-- Modal d'édition --}} @endsection @section('script') @endsection