@extends('Myadmin::layout.basic') @section('content')
返回
@if(!Session::has('userName')) {{ Form::open(array( 'class'=>'form-horizontal well'))}}
留言文章 {{ Form::select('article', $articles, 0, array('class' => 'form-control') )}}
{{ Form::close()}} @endif @if($article_content == 'N')
請選擇留言文章
@else @foreach($article_content as $content) @if($comments != null) @foreach($comments as $comment) @endforeach @else @endif {{-- {{ Form::open(array('action'=>'ArticleController@postNewcomment', 'class'=>'form-horizontal well', 'style'=>'display:inline'))}} {{ Form::close()}}--}} @endforeach
文章標題 {{{$content->title}}}
文章內容 {{--{{{$content->description}}}--}}
 
 

 留言

{{{$comment -> comment_content}}}

 No comment!!

{{Session::get('userName');}}

{{Form::hidden('article_id',$content->id)}} {{Form::hidden('blogger_id',$content->blogger_id)}}
{{ Form::text('comment_content', null, array('placeholder'=> 'Write a comment...','class'=>'form-control'));}}
@endif
@stop