function logsession

This commit is contained in:
Ainie Hayatie
2024-01-30 12:32:43 +08:00
parent 0322112863
commit 51b1f32c07
4 changed files with 126 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Logsession extends Model
{
protected $table = 'logusers';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['nama','kodcaw','nokp','taraf','email'];
public $timestamps = true;
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}