12 lines
180 B
PHP
Executable File
12 lines
180 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PaymentType extends Model
|
|
{
|
|
protected $guarded = array('id');
|
|
public $table = "payment_type";
|
|
}
|