@extends('admin.layout.app') @section('title', 'Vocabularies') @section('content')
| No | Word | Synonyms | Antonyms | Course | Unit | Actions |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $vocabulary->word }} | @if (is_array($vocabulary->synonyms)) @foreach ($vocabulary->synonyms as $synonym) {{ $synonym }} @endforeach @else - @endif | @if (is_array($vocabulary->anonyms)) @foreach ($vocabulary->anonyms as $anonym) {{ $anonym }} @endforeach @else - @endif | {{ $vocabulary->course->name ?? '-' }} | {{ $vocabulary->unit->name ?? '-' }} | Edit |