@extends('layouts.superadmin') @section('title', __('Prompts')) @section('style') @endsection @section('content')
| # | 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 }} |
|