PHP code example of bambolee-digital / filament-translate
1. Go to this page and download the library: Download bambolee-digital/filament-translate 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/ */
bambolee-digital / filament-translate example snippets
use Spatie\Translatable\HasTranslations;
class Post extends Model
{
use HasTranslations;
public $translatable = ['title', 'content'];
}
use Filament\Resources\Form;
use Filament\Forms\Components\TextInput;
public static function form(Form $form): Form
{
return $form
->schema([
TextInput::make('title')
->translatable()
->
use App\Models\Post;
use Filament\Forms;
use Filament\Resources\Form;
use Filament\Resources\Resource;
class PostResource extends Resource
{
protected static ?string $model = Post::class;
public static function form(Form $form): Form
{
return $form
->schema([
Forms\Components\TextInput::make('title')
->ld won't be translatable
Forms\Components\DatePicker::make('published_at'),
]);
}
// ... other resource methods
}