本文整理汇总了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;
}
}
}