feat: implement Change resource with CRUD functionality and migration
update image tags to v0.0.8 in build scripts and docker-compose files
This commit is contained in:
parent
64a7d1d2f4
commit
5b0e55c4b2
20 changed files with 408 additions and 88 deletions
|
|
@ -4,6 +4,8 @@ namespace App\Providers;
|
|||
|
||||
use App\Models\Entry;
|
||||
use App\Observers\EntryObserver;
|
||||
use App\Models\Change;
|
||||
use App\Observers\ChangeObserver;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Illuminate\Support\Facades\File;
|
||||
|
||||
|
|
@ -29,5 +31,6 @@ class AppServiceProvider extends ServiceProvider
|
|||
}
|
||||
|
||||
Entry::observe(EntryObserver::class);
|
||||
Change::observe(ChangeObserver::class);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue