Log.php 521 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. use Illuminate\Notifications\Notifiable;
  6. use Laravel\Sanctum\HasApiTokens;
  7. class Log extends Model
  8. {
  9. use HasApiTokens, HasFactory, Notifiable;
  10. protected $primaryKey = 'id';
  11. protected $fillable = [
  12. 'user',
  13. 'project_number',
  14. 'action_type',
  15. 'action_content',
  16. 'action_result',
  17. 'action_timestamp',
  18. ];
  19. public $timestamps = false;
  20. }