@extends('layouts.app') @section('content')
{{ __('Add topic') }}
@foreach($topics as $topic) @endforeach
{{ __('Name') }} {{ __('Description') }} {{ __('Subtopics') }} {{ __('Actions') }}
{{ $topic->name }} {{ str_limit($topic->description, $limit = 150, $end = '...') }} {{ $topic->subtopics()->count() }}
@endsection