Gutschriften manuell hinzufügen, Yard 0& tax
This commit is contained in:
parent
e670b92f5d
commit
c02fffd883
24 changed files with 497 additions and 68 deletions
|
|
@ -45,6 +45,10 @@ use Illuminate\Database\Eloquent\Model;
|
|||
* @method static \Illuminate\Database\Eloquent\Builder|UserCredit whereUpdatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|UserCredit whereUserMargins($value)
|
||||
* @mixin \Eloquent
|
||||
* @property string|null $credit_number
|
||||
* @property string|null $date
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|UserCredit whereCreditNumber($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|UserCredit whereDate($value)
|
||||
*/
|
||||
class UserCredit extends Model
|
||||
{
|
||||
|
|
@ -60,7 +64,8 @@ class UserCredit extends Model
|
|||
'cancellation' => 'bool',
|
||||
'status' => 'int',
|
||||
'credit' => 'array',
|
||||
'user_margins' => 'object'
|
||||
'user_margins' => 'object',
|
||||
'user_credits' => 'object'
|
||||
];
|
||||
|
||||
protected $fillable = [
|
||||
|
|
@ -73,6 +78,7 @@ class UserCredit extends Model
|
|||
'date',
|
||||
'credit',
|
||||
'user_margins',
|
||||
'user_credits',
|
||||
'paid_out',
|
||||
'cancellation',
|
||||
'status'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue