remove codeigniter

This commit is contained in:
root
2026-06-04 02:41:08 -04:00
parent 4e33882ac7
commit b4e6ac03c5
180 changed files with 457 additions and 2186 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ class BadgePrintLog extends BaseModel
{
protected $table = 'badge_print_logs';
// CI: useTimestamps = false
// legacy: useTimestamps = false
public $timestamps = false;
protected $fillable = [
@@ -71,7 +71,7 @@ class BadgePrintLog extends BaseModel
if (empty($rows)) return 0;
try {
// insert returns bool; we return count best-effort like CI
// insert returns bool; we return count best-effort like legacy
DB::table((new static)->getTable())->insert($rows);
return count($rows);
} catch (QueryException $e) {