This commit is contained in:
2022-05-04 15:41:02 +08:00
commit c76a1850a1
766 changed files with 201246 additions and 0 deletions

18
app/Models/ItemLog.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
namespace App\Models;
class ItemLog extends Model
{
public function user()
{
return $this->belongsTo(User::class);
}
public function item()
{
return $this->belongsTo(Item::class);
}
}