标签:llb except int number ber php string com action
public function store(Request $request, $id)
{
$externalAccount = ExternalAccounts::find($id);
DB::beginTransaction();
try {
$externalAccount->fund_number = 999;
$externalAccount->capital_balance = ‘kjhkjhkj‘;
$externalAccount->save();
DB::commit();
} catch (Exception $e){
DB::rollback();
throw $e;
}
}
标签:llb except int number ber php string com action
原文地址:http://www.cnblogs.com/fenle/p/6068895.html