Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?php
-
- namespace App\Models;
-
- use CodeIgniter\Model;
-
- class PrestadorModel extends Model
- {
- protected $table = 'prestador';
- protected $primaryKey = 'idprestador';
- protected $useTimestamps = false;
-
-
- function getPrestador($id = null)
- {
- return $this->where('idprestador', $id)->first();
- }
- }
|