Advertisement
Firdaus_Shinoda

Karyawan.php

May 27th, 2017
2,113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 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.     protected $fillable = ['id','nama','nip','tgl_lahir','gender','deleted','foto'];
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement