raheel3031
raheel3031
FFilament
Created by raheel3031 on 3/31/2025 in #❓┊help
Css styling in theme not working
what should i do now?
7 replies
FFilament
Created by raheel3031 on 3/29/2025 in #❓┊help
error installing filament
Yeah I solved it
10 replies
FFilament
Created by raheel3031 on 3/29/2025 in #❓┊help
error installing filament
yes it was registered
10 replies
FFilament
Created by raheel3031 on 3/17/2025 in #❓┊help
filament plugin menu-builder hide from sidebar
Sehr gut
15 replies
FFilament
Created by raheel3031 on 3/17/2025 in #❓┊help
filament plugin menu-builder hide from sidebar
Yes that worked as well.
15 replies
FFilament
Created by raheel3031 on 3/17/2025 in #❓┊help
filament plugin menu-builder hide from sidebar
I was using wrong format and data to import
15 replies
FFilament
Created by raheel3031 on 3/17/2025 in #❓┊help
filament plugin menu-builder hide from sidebar
What do you mean
15 replies
FFilament
Created by raheel3031 on 3/17/2025 in #❓┊help
filament plugin menu-builder hide from sidebar
yes now it is working. thanks a lot. i fixed the importer issues also
15 replies
FFilament
Created by raheel3031 on 3/17/2025 in #❓┊help
filament plugin menu-builder hide from sidebar
anyone?
15 replies
FFilament
Created by raheel3031 on 3/9/2025 in #❓┊help
validation in importer
for filament
64 replies
FFilament
Created by raheel3031 on 3/9/2025 in #❓┊help
validation in importer
i meant the tutorials in general.
64 replies
FFilament
Created by raheel3031 on 3/9/2025 in #❓┊help
validation in importer
no the import i have to modify
64 replies
FFilament
Created by raheel3031 on 3/9/2025 in #❓┊help
validation in importer
is it possible for the team to make tutorials? because sometimes it is not clear how to write the code.
64 replies
FFilament
Created by raheel3031 on 3/9/2025 in #❓┊help
validation in importer
yes but how else should i handle it this is in the migration file
Schema::create('collections', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('slug')->unique();
$table->longText(column: 'description')->nullable();
$table->json('images')->nullable();
$table->foreignId('media_id')->nullable()->constrained('media')->nullOnDelete();
$table->boolean('is_visible')->default(true);
$table->foreignId('parent_id')
->nullable()
->constrained('collections')
->cascadeOnDelete();
$table->json('tags')->nullable();
$table->json('data')->nullable();
$table->timestamps();
});
Schema::create('collections', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('slug')->unique();
$table->longText(column: 'description')->nullable();
$table->json('images')->nullable();
$table->foreignId('media_id')->nullable()->constrained('media')->nullOnDelete();
$table->boolean('is_visible')->default(true);
$table->foreignId('parent_id')
->nullable()
->constrained('collections')
->cascadeOnDelete();
$table->json('tags')->nullable();
$table->json('data')->nullable();
$table->timestamps();
});
64 replies
FFilament
Created by raheel3031 on 3/9/2025 in #❓┊help
validation in importer
but didn't change anything in the image field
64 replies
FFilament
Created by raheel3031 on 3/9/2025 in #❓┊help
validation in importer
yes almost. i changed only the content and name to see if it imports correct
64 replies
FFilament
Created by raheel3031 on 3/9/2025 in #❓┊help
validation in importer
no i didn't change anything there
64 replies
FFilament
Created by raheel3031 on 3/9/2025 in #❓┊help
validation in importer
image data is being imported as this ["["collections/01JMYENZR4ZXWJV9DKCV6H95KF.png"]"] why is this happening? i didn't change that
64 replies
FFilament
Created by raheel3031 on 3/9/2025 in #❓┊help
validation in importer
yes i think this was the case. But what i still am figuring out is this. image data is being imported as this ["["collections\/01JMYENZR4ZXWJV9DKCV6H95KF.png"]"]
64 replies
FFilament
Created by raheel3031 on 3/9/2025 in #❓┊help
validation in importer
Yes, apparently i have to divide the columns and save it as a csv. then importing works
64 replies