{!! Form::label('id', 'Id:') !!}

{{ $content->id }}

{!! Form::label('title', 'Title:') !!}

{{ $content->title }}

{!! Form::label('lesson_id', 'Lesson Id:') !!}

{{ $content->lesson->title }}

{!! Form::label('url_video', 'Url Video:') !!}

{{ $content->url_video }}

{!! Form::label('published', 'Published:') !!}

{{ $content->published }}

{!! Form::label('created_at', 'Created At:') !!}

{{ $content->created_at }}

{!! Form::label('updated_at', 'Updated At:') !!}

{{ $content->updated_at }}

{!! Form::label('description', 'Description:') !!}

{!! $content->description !!}