관리-도구
편집 파일: PaymentWithCreditCard.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; class PaymentWithCreditCard extends Model { protected $table = 'payment_with_credit_card'; protected $fillable = [ 'payment_id', 'customer_id', 'customer_stripe_id', 'charge_id', ]; protected $casts = [ 'payment_id' => 'integer', 'customer_id' => 'integer', ]; }