feat: basic support for liquid templates; liquid receipt "Day in History" added

This commit is contained in:
Benjamin Nussbaum 2025-03-17 22:52:35 +01:00
parent 88f90ff9ae
commit 9a9b5080d6
5 changed files with 321 additions and 1 deletions

View file

@ -23,9 +23,18 @@ class DatabaseSeeder extends Seeder
'password' => bcrypt('admin@example.com'),
]);
Device::factory(1)->create([
'mac_address' => '00:00:00:00:00:00',
'api_key' => 'test-api-key'
]);
// Device::factory(5)->create();
// Plugin::factory(3)->create();
$this->call([
ExampleReceiptsSeeder::class,
]);
}
}
}