DonnyS

karyawan.model

May 28th, 2017
1,996
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. class Karyawan extends Model
  8. {
  9.     //
  10.     protected $table = 'employees';
  11.     protected $fillable=[
  12.       'nip',
  13.       'nama',
  14.       'tgl_lahir',
  15.       'gender',
  16.       'foto'
  17.     ];
  18.  
  19. }
Add Comment
Please, Sign In to add comment