Guest User

Codingan Laravel Upload Gambar (Karyawan.php)

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