File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
- /*todo
4
- * render hook to show the dropdown list
5
- * render hook to show the bookmark toggle
6
- * a blade component
7
- * an action
8
- * multi tenant
9
- */
10
-
11
3
use Filament \Tables \View \TablesRenderHook ;
12
4
use Filament \View \PanelsRenderHook ;
13
5
Original file line number Diff line number Diff line change @@ -16,9 +16,12 @@ return new class extends Migration
16
16
Schema::create(config('zeus-delia.table-prefix').'bookmarks', function (Blueprint $table) {
17
17
$table->bigIncrements('id');
18
18
19
- $table->string('bookmarkable_type');
19
+ $table->string('bookmarkable_resource');
20
+ $table->string('bookmarkable_page')->nullable();
20
21
$table->integer('bookmarkable_id')->nullable();
21
22
23
+ $table->integer('user_id');
24
+
22
25
$table->timestamps();
23
26
$table->softDeletes();
24
27
});
You can’t perform that action at this time.
0 commit comments