TranceCode
TranceCode
FFilament
Created by TranceCode on 11/18/2024 in #❓┊help
How to organize a data import module in my SAAS that respects dependencies between records?
No description
1 replies
FFilament
Created by TranceCode on 11/13/2024 in #❓┊help
Insert import and export button here!
No description
3 replies
FFilament
Created by TranceCode on 11/5/2024 in #❓┊help
How can add a new button in the login for different panel?
No description
10 replies
FFilament
Created by TranceCode on 10/12/2024 in #❓┊help
Help with TinyMCE, duplicate the textarea
No description
4 replies
FFilament
Created by TranceCode on 8/15/2024 in #❓┊help
how can disable days of week?
Hey friends, i need disable a days of week that i don-t have in the array in my table, i try whit this code but is not working, do you have any idea about how can fix this? i have this in my table row availabledays ["Lunes"] ["Sabado","Lunes","Jueves","Miercoles"] ["Miercoles","Lunes","Viernes","Sabado","Martes","Jueves","Domingo"] This is my code:
6 replies
FFilament
Created by TranceCode on 8/13/2024 in #❓┊help
How can I create a custom dashboard?
No description
4 replies
FFilament
Created by TranceCode on 8/4/2024 in #❓┊help
how can show information in topbar?
No description
3 replies
FFilament
Created by TranceCode on 7/30/2024 in #❓┊help
DatePicker type moth not working in Firefox and Safari
No description
3 replies
FFilament
Created by TranceCode on 7/28/2024 in #❓┊help
Multitenant with separated database?
Hello everyone, I want to ask a question, just out of curiosity to the filament team, have you ever thought about adding functionality to filament for tenants that can each work with their separate databases? 😃 Thank you so much!
6 replies
FFilament
Created by TranceCode on 7/3/2024 in #❓┊help
How can confirm or cancel the action in toggle
No description
7 replies
FFilament
Created by TranceCode on 7/2/2024 in #❓┊help
Hidden save and cancel button in form wizzard?
No description
6 replies
FFilament
Created by TranceCode on 6/29/2024 in #❓┊help
How can use table of filament inside Wizard\Step ?
No description
7 replies
FFilament
Created by TranceCode on 6/26/2024 in #❓┊help
APP_ENV=Production vs APP_ENV=local
Hello Guys, I have a problem. I developed an app with panels in FilamentPHP and added policies to it, so far so good, the problem arose when taking it to production with Laravel Forge... It turns out that when I try to access it it gives me a 403 Forbidden error, check if it was something with my policies and the problem is not there, check other things and nothing there, until I get to test the .env, and it turns out that when changing the variable
APP_ENV=production
APP_ENV=production
to
APP_ENV=local
APP_ENV=local
the application loads correctly... so it doesn't happen here I understand why this 403 block appears... any idea why it could be? I have another app that I created with Laravel and the .env file has the
APP_ENV=production
APP_ENV=production
and I send the BackOffice without problem, something that does not happen with Laravel and Filamentphp, it gives me problems... any ideas or suggestions?
7 replies
FFilament
Created by TranceCode on 6/23/2024 in #❓┊help
SPA mode brings up the menu at the beginning!
No description
12 replies
FFilament
Created by TranceCode on 6/2/2024 in #❓┊help
how can add a new menu inside the Panel?
No description
6 replies
FFilament
Created by TranceCode on 6/1/2024 in #❓┊help
Error when Send email using Queue
I send email when have 2 event, created and updated, i test it without queue and it's working, but when iplements ShouldQueue this not work for me, i have my code like this:
<?php

namespace App\Mail;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;

use App\Models\Company\EntrustRegistration;

class EntrustRegistrationNotification extends Mailable implements ShouldQueue
{
use Queueable, SerializesModels;

public EntrustRegistration $registration;
public string $action;

/**
* Create a new message instance.
*/
public function __construct(EntrustRegistration $registration, string $action)
{
$this->registration = $registration;
$this->action = $action;
}

public function build()
{
return $this->view('emails.entrust_registration_notification')
->with([
'registration' => $this->registration,
'action' => $this->action,
])
->subject("Se ha {$this->action} una encomienda");
}

}
<?php

namespace App\Mail;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;

use App\Models\Company\EntrustRegistration;

class EntrustRegistrationNotification extends Mailable implements ShouldQueue
{
use Queueable, SerializesModels;

public EntrustRegistration $registration;
public string $action;

/**
* Create a new message instance.
*/
public function __construct(EntrustRegistration $registration, string $action)
{
$this->registration = $registration;
$this->action = $action;
}

public function build()
{
return $this->view('emails.entrust_registration_notification')
->with([
'registration' => $this->registration,
'action' => $this->action,
])
->subject("Se ha {$this->action} una encomienda");
}

}
7 replies
FFilament
Created by TranceCode on 5/13/2024 in #❓┊help
how can redirect to View Page in a Panel?
Hey guys, i have a saas project with 3 panel, Panel SuperAdmin, Panel Company, Panel Coowner, The Panel Coowner it's about 90% only for view information, however i have the typical menu with call to index view and show the table with action, i can control the actions with roles and permission, however in the panel coowner i have menu that only need show information, so my question is, how can configure the menu for show the only the view page, i mean go to view no index with the click... like a redirection, i dont' wanna make a livewire page, i only need make a redirect or show only the view page.. thank you guys!
13 replies
FFilament
Created by TranceCode on 5/1/2024 in #❓┊help
must be a file of type:application/pdf
No description
13 replies
FFilament
Created by TranceCode on 4/25/2024 in #❓┊help
How can show more chart per line?
No description
3 replies
FFilament
Created by TranceCode on 4/17/2024 in #❓┊help
Add a new class using @apply
No description
5 replies