簡體   English   中英

如何解決未定義的變量

[英]How to solve undefined variable

查看頁面:

 @if(count($applications)>0)
<table class= "table table-striped">
 <tr>
    <th>Email</th>
     <th>Date Applied</th>
     <th>Leave Type</th>
     <th>Leave Status</th>
     <th></th>


 </tr>
 @foreach($applications as $application )
 <tr>
    <td>{{$application ->user->email}}</td>
    <td>{{$application ->dateApplied}}</td>
    <td>{{$application ->leaveType}}</td>
    <td>{{$application ->leaveStatus}}</td>
    <td>
     {!!Form::open(['action'=>['ApplicationAdminController@destroy', $application ->appId], 'method'=>'DELETE'])!!}
     {{Form::hidden('_method', 'DELETE')}}
     {{Form::submit('Delete', ['class' => 'btn btn-danger'])}}
     {!!Form::close()!!}
    </td>


</tr>
 @endforeach
</table>

controller:

 public function  destroy($appId)


{

    $application = Application::find( $appId);
    $application ->delete();

 $this->deleteLeave($appId);
    return redirect('/applicationAdminHistory')->with ('success', 'Application Removed');
}

public function deleteLeave($appId){

    $user_id = Auth::id();
    $req = DB::table('leave_summaries')
    ->where('user_id',$user_id)
    ->increment($leaveType,$day);

    }    

我想要做的是當單擊刪除按鈕時,應用程序將被刪除,並將在 leave_summaries 表中進行增量。 leave_summaries 的增量基於已刪除的應用程序中的日期和休假類型的值。 運行此代碼后,出現未定義變量錯誤,如下所示:

運行此代碼后的結果

在此代碼中請傳遞 $user_id、$leaveType、$day:

 public function deleteLeave($appId){


        $req = DB::table('leave_summaries')
        ->where('user_id',$user_id)
        ->increment($leaveType,$day);

        }   

你沒有定義這三個變量:$user_id, $leaveType, $day

您需要將這些值作為參數傳遞給 deleteLeave() 方法,或者必須在調用方法之前定義這些值。

public function deleteLeave($user_id, $leaveType, $day){
    $req = DB::table('leave_summaries')
        ->where('user_id',$user_id)
        ->increment($leaveType, $day);
}   

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM