1234567891011121314151617 |
- <?php
-
- namespace App\Model\Database;
-
- use Illuminate\Notifications\Notifiable;
- use Yajra\Oci8\Eloquent\OracleEloquent as Eloquent;
-
- use App\Model\Database\Kelantanpay;
-
- class EPBT extends Eloquent
- {
- //
- use Notifiable;
- protected $connection = 'oracle';
- protected $table = 'KELANTANPAY';
-
- }
|