@extends('layouts.admin') @section('page-title','') @section('breadcrumb') @include('admin.partials.crumb',[ 'crumbs'=>[ route('admin.dashboard')=>__('default.dashboard'), '#'=> __lang('Student Forum') ]]) @endsection @section('content')
{{ __lang('Topic') }} | {{ __lang('Session/Course') }} | {{ __lang('Created By') }} | {{ __lang('Added On') }} | {{ __lang('Replies') }} | {{ __lang('Last Reply') }} | |
---|---|---|---|---|---|---|
{{ $row->title }} | {{$row->course_name}} | {{ $topic->user->name }} | {{showDate('d/M/Y',$row->created_at)}} | {{($topic->forumPosts->count()-1) }} | @php if($topic->forumPosts->count()-1 > 0): @endphp {{showDate('D, d M Y g:i a',$topic->forumPosts()->orderBy('id','desc')->first()->created_at) }} @php endif; @endphp |