1. Go to this page and download the library: Download awcodes/filament-versions library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
awcodes / filament-versions example snippets
use Awcodes\FilamentVersions\VersionsPlugin;
use Awcodes\FilamentVersions\VersionsWidget;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
VersionsPlugin::make(),
])
->widgets([
VersionsWidget::class,
]);
}
use Awcodes\FilamentVersions\VersionsPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
VersionsPlugin::make()
->hasNavigationView(false),
]);
}
use Awcodes\FilamentVersions\Providers\Contracts\VersionProvider;
class MyCustomVersionProvider implements VersionProvider
{
public function getName(): string
{
return 'My Custom Version';
}
public function getVersion(): string
{
return '1.0.0';
}
}
use Awcodes\FilamentVersions\VersionsPlugin;
use App\Filament\VersionProviders\MyCustomVersionProvider;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
VersionsPlugin::make()
->items([
new MyCustomVersionProvider(),
]),
]);
}
use Awcodes\FilamentVersions\VersionsPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
VersionsPlugin::make()
->hasDefaults(false)
]);
}
use Awcodes\FilamentVersions\VersionsPlugin;
public function panel(Panel $panel): Panel
{
return $panel
->plugins([
VersionsPlugin::make()
->widgetColumnSpan('full')
->widgetSort(2),
]);
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.