<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
unexpectedjourney / filament-sticky-resource-form-footers example snippets
use UnexpectedJourney\FilamentStickyResourceFormFooters\FilamentStickyResourceFormFootersPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
FilamentStickyResourceFormFootersPlugin::make(),
])
])
}
use UnexpectedJourney\FilamentStickyResourceFormFooters\FilamentStickyResourceFormFootersPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
FilamentStickyResourceFormFootersPlugin::make()
->floating()
->colored()
])
]);
}
use UnexpectedJourney\FilamentStickyResourceFormFooters\FilamentStickyResourceFormFootersPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
FilamentStickyResourceFormFootersPlugin::make()
->floating(fn():bool => auth()->user()->use_floating_header)
->colored(fn():bool => auth()->user()->use_floating_header)
])
]);
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.