@extends('layouts.master') @section('content')
{{ $autor[0]->name}}

{{ $autor[0]->name }}

{{__("messages.AuthorBladeConteudo")}}

  • {{ count($autor[1]['magazine']) }} {{__("messages.AuthorBladeArtigos")}}
  • {{ count($autor[1]['video']) }} {{__("messages.AuthorBladeVideos")}}
  • {{ count($autor[1]['book']) }} {{__("messages.AuthorBladeLivros")}}

{{ $autor[0]->resumes[0]->resume}}

@foreach ($autor[1]['magazine'] as $key => $artigo)
@if(!$artigo['cover']) {{ $artigo['title_produto'] }} @else {{ $artigo['title'] }} @endif

{{ $artigo['title'] }}

{{ $artigo['title_produto'] }}

@if(!$artigo['brief'])

{{ $artigo['brief_produto'] }}

@else

{{ $artigo['brief'] }}

@endif
@endforeach
@foreach ($autor[1]['video'] as $key => $video)
@if(!$video['cover']) {{ $video['title_produto'] }} @else {{ $video['title'] }} @endif

{{ $video['title'] }}

{{ $video['title_produto'] }}

@if(!$video['brief'])

{{ $video['brief_produto'] }}

@else

{{ $video['brief'] }}

@endif
@endforeach
@foreach ($autor[1]['book'] as $key => $book)
@if(!$book['cover']) {{ $book['title_produto'] }} @else {{ $book['title'] }} @endif

{{ $book['title'] }}

{{ $book['title_produto'] }}

@if(!$book['brief'])

{{ $book['brief_produto'] }}

@else

{{ $book['brief'] }}

@endif
@endforeach
@endsection @section('api') @endsection