@extends('admin.layouts.app') @section('title', 'Testimonios') @section('icon', 'people-fill') @section('page-title', 'Testimonios / Comunidad') @section('content')
@forelse($testimonios as $t) @empty @endforelse
#AvatarNombreCargo / EmpresaEstrellasOrdenEstadoAcciones
{{ $t->id }}
@if($t->avatar)@else{{ strtoupper(substr($t->nombre,0,1)) }}@endif
{{ $t->nombre }} {{ $t->cargo }} — {{ $t->empresa }} {{ str_repeat('⭐', $t->estrellas) }} {{ $t->orden }} {{ $t->activo ? 'Activo' : 'Inactivo' }}
@csrf @method('DELETE')
No hay testimonios registrados.
@endsection