|
{!! Form::model($task, array('action' => ['TasksController@update', $task->id], 'method' => 'PUT', 'class'=>'form-inline', 'role' => 'form')) !!}
{!! Form::close() !!}
|
{{ $task->id }}
|
{{ $task->name }}
|
{{ $task->description }}
|
@if ($task->completed === 1)
Complete
@else
Incomplete
@endif
|
edit
Edit Task
{!! Form::open(array('class' => 'inline-block', 'id' => 'delete_'.$task->id, 'method' => 'DELETE', 'route' => array('tasks.destroy', $task->id))) !!}
{{ method_field('DELETE') }}
delete_forever
Delete Task
{!! Form::close() !!}
|