1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Ninja/Repositories/NinjaRepository.php

22 lines
383 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\Repositories;
2015-11-09 20:24:22 +01:00
use App\Models\Account;
class NinjaRepository
{
2016-07-21 14:35:23 +02:00
public function updatePlanDetails($clientPublicId, $data)
2015-11-09 20:24:22 +01:00
{
$account = Account::whereId($clientPublicId)->first();
2017-01-30 20:40:43 +01:00
if (! $account) {
2015-11-09 20:24:22 +01:00
return;
}
$company = $account->company;
2017-05-08 10:18:35 +02:00
$company->fill($data);
$company->save();
2015-11-09 20:24:22 +01:00
}
}