Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- class Karyawan extends Model
- {
- //
- protected $table ='employes';
- protected $fillable=[
- 'nip',
- 'nama',
- 'tgl_lahir',
- 'gender',
- 'foto',
- 'deleted'
- ];
- }
Advertisement
Add Comment
Please, Sign In to add comment