muza_sm183

Karyawan.php

May 28th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 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.     protected $table = 'employees';
  10.  
  11.     protected $fillable=[
  12.     'id',
  13.     'nip',
  14.     'nama',
  15.     'tgl_lahir',
  16.     'gender',
  17.     'deleted',
  18.     'foto'
  19.     ];
  20. }
Advertisement
Add Comment
Please, Sign In to add comment