@extends('backend.layouts.app') @section('title') {{ __($module_action) }} {{ __($module_title) }} @endsection @section('breadcrumbs') {{ __($module_title) }} {{ __($module_action) }} @endsection @section('content')
{{ __($module_title) }} {{ __($module_action) }} @lang(":module_name Management Dashboard", ['module_name'=>__(Str::title($module_name))]) @lang("List") @can('edit_'.$module_name) @endcan
@include('backend.includes.show')

@lang('Categories')


@lang("Tags")

    @foreach($$module_name_singular->tags as $row)
  • {{$row->name}}
  • @endforeach

@lang("Comments")

    @foreach($$module_name_singular->comments as $row)
  • {{$row->name}} by {{$row->user_name}}
  • @endforeach

@include('backend.includes.activitylog')
@endsection