samedi 9 septembre 2017

how to include blade file in Laravel 5.2

I am developing Laravel application and I need add comment form to My each task file regarding to each project. this is comments/form.blade.php

 <form class="form-vertical" role="form" method="post" action="">
        <div class="form-group">
            <textarea name="comments" class="form-control" style="width:80%;" id="comment" rows="5" cols="5"></textarea>
            @if ($errors->has('comments'))
                <span class="help-block"></span>
            @endif
        </div>

        <div class="form-group">
            <button type="submit" class="btn btn-info">Add Comment</button>
        </div>
        <input type="hidden" name="_token" value="">
    </form>

I am going to include this form file to show.blade.php file in tasks folder in view file. this is show.blade.php

<h2></h2>
<hr>


<hr>

{!!$tasks->body!!}

<hr>

@include('comments.form')

commentController.php

 public function postNewComment(Request $request, $id, Comment $comment)
    {
       $this->validate($request, [
            'comments'     => 'required|min:5',
        ]);

       $comment->comments       = $request->input('comments');
       $comment->project_id     = $id;
       $comment->user_id        = Auth::user()->id;
       $comment->save();

       return redirect()->back()->with('info', 'Comment posted successfully');
    }

routes.php

Route::post('projects/{projects}/comments', [
    'uses' => 'CommentsController@postNewComment',
    'as'   => 'projects.comments.create',
    'middleware' => ['auth']
]);

but finally got this error massage

Undefined variable: project (View: C:\Users\Nalaka\Desktop\acxian\resources\views\comments\form.blade.php)

how can fix this problem?



via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire