本文整理匯總了PHP中Registration::find方法的典型用法代碼示例。如果您正苦於以下問題:PHP Registration::find方法的具體用法?PHP Registration::find怎麽用?PHP Registration::find使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Registration
的用法示例。
在下文中一共展示了Registration::find方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: update
public function update($id)
{
$costs = Input::get('registration_cost');
$costs = str_replace(",", ".", $costs);
$costs = str_replace(".", "", $costs);
$costs = substr($costs, 0, -2);
$registration = Registration::find($id);
$registration->classification_id = Input::get('classification_id');
$registration->base_id = Input::get('location_id');
$registration->employee_id = Input::get('employee_id');
$registration->registration_date = Input::get('registration_date');
$registration->registration_cost = $costs;
$registration->registration_comments = Input::get('registration_comments');
$registration->save();
}
示例2: destroy
public function destroy($code)
{
$earnings = Earning::where('code', '=', $code)->get();
foreach ($earnings as $earning) {
switch ($earning->earnable_type) {
case 'Receivable':
$receivable = Receivable::find($earning->earnable_id);
$receivable->balance += $receivable->balance + $earning->payment;
$receivable->save();
$earning->delete();
break;
case 'Installment':
$installment = Installment::find($earning->earnable_id);
$installment->balance += $installment->balance + $earning->payment;
$installment->paid = 0;
$installment->save();
$earning->delete();
break;
case 'Registration':
$registration = Registration::find($earning->earnable_id);
$registration->cost_is_paid = 0;
$registration->save();
$earning->delete();
break;
case 'Movement':
$movement = Movement::find($earning->earnable_id);
$movement->paid = 0;
$movement->save();
$earning->delete();
break;
case 'Punishment':
$punishment = Punishment::find($earning->earnable_id);
$punishment->paid = 0;
$punishment->save();
$earning->delete();
break;
case 'Resign':
$resign = Resign::find($earning->earnable_id);
$resign->is_earned = 0;
$resign->save();
$earning->delete();
break;
default:
$earning->delete();
break;
}
}
}