@extends('layouts.app') @push('pageTitle') {{ __('labels.faqs') }} @endpush @section('content')
| # | {{ __('labels.question') }} | {{ __('labels.answer') }} | {{ __('labels.actions') }} |
|---|---|---|---|
| {{ $index + 1 }} |
@if($item->logo_path)
{{ strtoupper(substr($item->question, 0, 2)) }}
@endif
{{ $item->question }}@if($item->creator) {{ $item->author_name ?? (auth()->check() ? auth()->user()->name : null) }} @endif |
@if($item->answer)
{{ Str::limit($item->answer, 30, '...') }}
@else
-
@endif
|