You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -52,7 +52,7 @@ When you want to make your model projectable, you must add it the `Projectable`
52
52
53
53
```php
54
54
use App\Models\Projections\MyProjection;
55
-
use TimothePearce\Quasar\Projectable;
55
+
use TimothePearce\TimeSeries\Projectable;
56
56
57
57
class MyProjectableModel extends Model
58
58
{
@@ -67,9 +67,9 @@ class MyProjectableModel extends Model
67
67
### Implement a Projection
68
68
69
69
When you're implementing a projection, follow theses three steps:
70
-
*[Define your projection periods](https://timothepearce.github.io/laravel-quasar-docs/getting-started/implement-a-projection#define-your-projection-periods)
71
-
*[Add a default content](https://timothepearce.github.io/laravel-quasar-docs/getting-started/implement-a-projection#define-the-default-content-of-your-projection)
72
-
*[Bind your projection to the projectable models](https://timothepearce.github.io/laravel-quasar-docs/getting-started/implement-a-projection#implement-the-binding)
70
+
*[Define your projection periods](https://timothepearce.github.io/laravel-time-series-docs/getting-started/implement-a-projection#define-your-projection-periods)
71
+
*[Add a default content](https://timothepearce.github.io/laravel-time-series-docs/getting-started/implement-a-projection#define-the-default-content-of-your-projection)
72
+
*[Bind your projection to the projectable models](https://timothepearce.github.io/laravel-time-series-docs/getting-started/implement-a-projection#implement-the-binding)
73
73
74
74
### Query a Projection
75
75
@@ -102,7 +102,7 @@ Note that this method **fill the missing projections between the given dates** w
Copy file name to clipboardExpand all lines: composer.json
+14-11Lines changed: 14 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,19 @@
1
1
{
2
-
"name": "timothepearce/laravel-quasar",
3
-
"description": "Laravel Quasar provides an API to create and maintain data projections (statistics, aggregates, etc.) from you Eloquent models.",
2
+
"name": "timothepearce/laravel-time-series",
3
+
"description": "Laravel Time Series provides an API to create and maintain projected data from you Eloquent models, and represent them as time-series.",
0 commit comments