Alnuaimi
Alnuaimi
FFilament
Created by Phuc Le on 3/31/2024 in #❓┊help
Multi tenancy with multiple database support
File::link("{$storage_path}/app/public", public_path("{$suffixBase}{$tenant->id}")); you mean that ?
71 replies
FFilament
Created by Phuc Le on 3/31/2024 in #❓┊help
Multi tenancy with multiple database support
yes ,this is important but before how to fix with local disk this is middleware for public you can look <?php namespace App\Http\Middleware; use Illuminate\Http\Request; use Closure; class FileUrlMiddleware { public function handle(Request $request, Closure $next) { config()->set( 'filesystems.disks.public.url', url('/' . config('tenancy.filesystem.suffix_base') . tenant('id')) );
return $next($request); } }
71 replies
FFilament
Created by Phuc Le on 3/31/2024 in #❓┊help
Multi tenancy with multiple database support
No description
71 replies
FFilament
Created by Phuc Le on 3/31/2024 in #❓┊help
Multi tenancy with multiple database support
look ,I want to use local disk with tenancyforlaravel ,every thing is ok but no display in form you can check my config
71 replies
FFilament
Created by Phuc Le on 3/31/2024 in #❓┊help
Multi tenancy with multiple database support
Thank you for your comment! I understand that you're suggesting using Authenticate for user verification and Policy for permission checks. In my case, the issue isn't with authentication or permissions, but rather with how to display files stored on the local disk (local disk) in the form. I’m using a Multi-Tenancy system, and the files are being stored correctly in each tenant's designated folders. However, when trying to display the file in the form, it doesn’t show up properly. I believe the issue might be with the file paths or how they’re being accessed. If you have any experience dealing with such cases, I’d be grateful to hear your suggestions! 😊
71 replies
FFilament
Created by Alnuaimi on 3/19/2025 in #❓┊help
private image with TenancyForLaravel
Step 1: Add the following code in the AppServiceProvider boot method. Storage::disk('local')->buildTemporaryUrlsUsing(function ($path, $expiration, $options) { return URL::temporarySignedRoute( 'local.temp', $expiration, array_merge($options, ['path' => $path]) ); }); Notice that URL::temporarySignedRoute receives route name local.temp, which we need to define. Step 2: Add the route in web.php Route::get('local/temp/{path}', function (string $path){ return Storage::disk('local')->download($path); })->name('local.temp'); I did it ,but not work
22 replies
FFilament
Created by Alnuaimi on 3/19/2025 in #❓┊help
private image with TenancyForLaravel
ok,but where I can write that ,I have two routes tenant.php and web.php
22 replies
FFilament
Created by Alnuaimi on 3/19/2025 in #❓┊help
private image with TenancyForLaravel
not
22 replies
FFilament
Created by Alnuaimi on 3/19/2025 in #❓┊help
private image with TenancyForLaravel
for private you need a temporary url builder with public ,Is it ok?
22 replies
FFilament
Created by Alnuaimi on 3/19/2025 in #❓┊help
private image with TenancyForLaravel
I think when use private disk not need storage link but if i change ->disk('public') is very ok no problem but when use ->disk('local') ->visibility('private') I have the problem
22 replies
FFilament
Created by Alnuaimi on 3/19/2025 in #❓┊help
private image with TenancyForLaravel
No description
22 replies
FFilament
Created by Alnuaimi on 3/19/2025 in #❓┊help
private image with TenancyForLaravel
What do you mean?
22 replies
FFilament
Created by Alnuaimi on 3/19/2025 in #❓┊help
private image with TenancyForLaravel
22 replies
FFilament
Created by Alnuaimi on 3/19/2025 in #❓┊help
private image with TenancyForLaravel
I have https the same problem
22 replies
FFilament
Created by Phuc Le on 3/31/2024 in #❓┊help
Multi tenancy with multiple database support
which middleware?
71 replies
FFilament
Created by Phuc Le on 3/31/2024 in #❓┊help
Multi tenancy with multiple database support
Hi, Ok ,good solution,but any user can acess file without auth How secure it please help me
71 replies
FFilament
Created by Alnuaimi on 3/19/2025 in #❓┊help
private image with TenancyForLaravel
Up
22 replies
FFilament
Created by Mombei on 2/24/2025 in #❓┊help
Relation Manager in Tab component of parent Resource
public static function form(Form $form): Form { return $form ->columns(1) ->schema([ Tabs::make() ->tabs([ Tabs\Tab::make('Post Details') ->icon('heroicon-o-document-text') ->schema([ ... ]), Tabs\Tab::make('Categories') ->visibleOn('edit') ->icon('heroicon-o-tag') ->schema([ Livewire::make(CategoriesRelationManager::class, fn (Post $record, Pages\EditPost $livewire): array => [ 'ownerRecord' => $record, 'pageClass' => $livewire::class, ]), ]), Tabs\Tab::make('Comments') ->visibleOn('edit') ->icon('heroicon-o-chat-bubble-left') ->schema([ Livewire::make(CommentsRelationManager::class, fn (Post $record, Pages\EditPost $livewire): array => [ 'ownerRecord' => $record, 'pageClass' => $livewire::class, ]), ]), ]), ]); }
6 replies
FFilament
Created by Mike Peters on 1/27/2025 in #❓┊help
Rich Editor escaping its own HTML
no no you do not use Laravel middleware messing with the payload and escaping characters like this Filament RichEditor is working very good you can check filament V or Laravel ,or you can user RichEditorin another place or definite project for test
10 replies
FFilament
Created by KingNii on 1/26/2025 in #❓┊help
Second Panel
php artisan make:filament-resource Customer enter it will ask on prompt
5 replies