@extends('layout.front.app') @section('title', $book->translation->title) @section('description', $book->translation->description) @section('page_img', $book->img) @section('content')

{{__('front.about_book')}}

{!! $book->translation->content !!}


    @if (!empty($book->translation->tags)) @php $tags = explode(',', $book->translation->tags); @endphp @foreach ($tags as $tag)
  • {{$tag}}
  • @endforeach @endif
@endsection @section('js') @endsection