2016-08-18 71 views
1

我试图将isApprove布尔值设置为true,如果单击当前的id按钮。如果点击按钮,如何设置布尔值为true?

迁移:

public function up() 
{ 
    Schema::create('approve_document', function (Blueprint $table) 
    { 
     $table->increments('id'); 
     $table->integer('approve_id')->unsigned(); 
     $table->integer('document_id')->unsigned(); 
     $table->integer('requestedBy')->unsigned(); 

     $table->foreign('approve_id')->references('id')->on('approves')->onDelete('cascade'); 
     $table->foreign('document_id')->references('id')->on('documents')->onDelete('cascade'); 
     $table->foreign('requestedBy')->references('id')->on('users')->onDelete('cascade'); 

     $table->boolean('isApprove'); 

     $table->dateTime('dateReceived')->default(DB::raw('CURRENT_TIMESTAMP')); 
     $table->timestamp('dateModified')->default(DB::raw('CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP')); 
    }); 
} 

控制器:

public function documentsSentForApproval() 
{ 

    $pendingDocumentLists = DB::table('approve_document') 
    ->select('documents.title', 'documents.content', 'categories.category_type', 'users.username', 'approve_document.dateReceived', 'documents.id', 'approves.approver_id', 'approve_document.document_id', 'approve_document.isApprove') 
    ->join('documents', 'documents.id', '=', 'approve_document.document_id') 
    ->join('categories', 'categories.id', '=', 'documents.category_id') 
    ->join('approves', 'approves.id', '=', 'approve_document.approve_id') 
    ->join('users', 'users.id', '=', 'approves.approver_id') 
    ->where('approver_id', '=', Auth::id()) 
    ->orWhere('requestedBy', '=', Auth::id()) 
    ->get(); 


    return view ('document.pending') 
    ->with('pendingDocumentLists', $pendingDocumentLists); 
} 

查看:

@foreach ($pendingDocumentLists as $list) 
     <tr class = "info"> 

      <td>{{ $list->title }}</td> 
      <td>{{ strip_tags(substr($list->content, 0, 50)) }} {{ strlen($list->content) > 50 ? "..." : '' }}</td> 
      <td>{{ $list->category_type }}</td> 
      <td>{{ $list->username }}</td> 
      <td>{{ date('M, j, Y', strtotime($list->dateReceived)) }}</td> 
      <td> 

       <a href = "{{ route ('document.viewPending', $list->id) }}"><button type = "submit" class = "btn btn-primary glyphicon glyphicon-open"> Read</button></a> 

       <a href = ""><button type = "submit" class = "btn btn-info glyphicon glyphicon-edit"> Edit</button></a> 

       <button type = "submit" class = "btn btn-danger glyphicon glyphicon-trash"> Delete</button> 

       @if (Auth::id() == $list->approver_id) 

        <a href = "{{ route ('document.pending', $list->document_id) }}"> 
         <button type = "submit" onclick = "approveFunction()" class = "btn btn-success glyphicon glyphicon-thumbs-up"> Approve</button> 
        </a> 

        <button type = "submit" class = "btn btn-warning glyphicon glyphicon-thumbs-down"> Reject</button> 

       @endif 

      </td> 
      <td></td> 

     </tr> 
@endforeach 

我有点在这里停留在我的if条件。如果我按批准按钮,我得到document的当前ID,但我需要在此处设置条件以将其isApprove设置为true。任何帮助我怎样才能做到这一点?

逻辑:

如果($list->document_id)是批准。设置isApprove柱为true当前document_id

回答

0

MAYB你看这个:

添加新

<input type="hidden" name="approved" value="0"> 

时使用JavaScript值更改为1点击按钮;


或者您可以通过ajax发送,但不要忘记添加令牌。

P.s true and false可以替换为1 ad 0

+0

感谢您的支持。我的db的当前值是0.所以我认为我应该把值改为'1'。 – Francisunoxx

+0

是的。你应该。 $批准= 1 将作品$批准=真 MySQL的布尔另存为TINYINT – napalias

+0

我应该包括在我的视图或JavaScript函数此输入类型=“隐藏”? – Francisunoxx

相关问题