11 lines
134 B
PHP
11 lines
134 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Penebusan extends Model
|
|
{
|
|
protected $table = 'penebusan';
|
|
}
|