heat23.
heat23.
FFilament
Created by schwartzmj on 4/25/2024 in #❓┊help
Subdomain / Domain based routing w/ Multitenancy. 419 Page Expired
I'm having a /larave/update 419 error in my Multi-tenant app using a package that is based on the spatie one. @schwartzmj were you able to resolve this issue?
12 replies
FFilament
Created by heat23. on 7/15/2024 in #❓┊help
Best way to sort / change order data in a table?
Thank you!
5 replies
FFilament
Created by heat23. on 7/2/2024 in #❓┊help
How do I change the font size in Filament forms?
Thank you @awcodes I will give that a try
11 replies
FFilament
Created by heat23. on 7/2/2024 in #❓┊help
How do I change the font size in Filament forms?
I'm using Tailwind in my entire App. I don't want to change the meaning of 'text-sm' globally.
11 replies
FFilament
Created by heat23. on 7/2/2024 in #❓┊help
How do I change the font size in Filament forms?
@Dennis Koch But how do I override the Filamant Forms default behavior? Do I need to publish all the views and modify it?
11 replies
FFilament
Created by heat23. on 7/2/2024 in #❓┊help
Backend Form validation example?
I have this so far
#[Validate('required|min:3')]
public ?string $title = null;
public ?string $slug = null;
public ?string $content = null;
#[Validate('required|min:3')]
public ?string $title = null;
public ?string $slug = null;
public ?string $content = null;
How do I display the form errors since my view simply has this?
{{ $this->form }}
{{ $this->form }}
3 replies
FFilament
Created by heat23. on 6/25/2024 in #❓┊help
Getting Started: Where is the Treatments Form?
Thanks @Dennis Koch . I have another question but will open a new thread
13 replies
FFilament
Created by heat23. on 6/25/2024 in #❓┊help
Getting Started: Where is the Treatments Form?
Thanks @toeknee the demo app will help. Do you by change have an example of a table "Bulk Action" where you can make changes to a few fields (i.e. category, status, etc). All the exampels only have "Delete"
13 replies
FFilament
Created by heat23. on 6/25/2024 in #❓┊help
Getting Started: Where is the Treatments Form?
@toeknee Does the guide go through this or do I need to figure it out on my own
13 replies
FFilament
Created by heat23. on 6/25/2024 in #❓┊help
Getting Started: Where is the Treatments Form?
I added that, but still not seeing a way to add Treatments
13 replies
FFilament
Created by heat23. on 6/14/2024 in #❓┊help
Difference between using Livewire vs Resource for Filament Forms?
Ahh, thanks for the clarification
8 replies
FFilament
Created by heat23. on 6/14/2024 in #❓┊help
Beginner form question - Field value is 'null'
My vite.config.js looks like this:
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';

export default defineConfig({
plugins: [
laravel({
input: [
'resources/css/app.css',
'resources/js/app.js',
],
refresh: [
'app/Livewire/**',
],
}),
],
});
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';

export default defineConfig({
plugins: [
laravel({
input: [
'resources/css/app.css',
'resources/js/app.js',
],
refresh: [
'app/Livewire/**',
],
}),
],
});
12 replies
FFilament
Created by heat23. on 6/14/2024 in #❓┊help
Beginner form question - Field value is 'null'
I commented out {{-- @vite('resources/js/app.js') --}} and I am getting a non-null value in the Textarea field, but still getting the 500 error in console
12 replies
FFilament
Created by heat23. on 6/14/2024 in #❓┊help
Beginner form question - Field value is 'null'
I am tailing the laravel.log, but nothing comes up
12 replies
FFilament
Created by heat23. on 6/14/2024 in #❓┊help
Beginner form question - Field value is 'null'
No description
12 replies
FFilament
Created by heat23. on 6/14/2024 in #❓┊help
Beginner form question - Field value is 'null'
@Leandro Ferreira I have "Detected multiple instances of apline running" and 500 Internal server error to /livewire/update
12 replies
FFilament
Created by heat23. on 6/14/2024 in #❓┊help
Difference between using Livewire vs Resource for Filament Forms?
panel meaning? Admin Panel?
8 replies
FFilament
Created by heat23. on 6/14/2024 in #❓┊help
Beginner form question - Field value is 'null'
@Leandro Ferreira
<?php

namespace App\Livewire;

use Filament\Forms\Components\Textarea;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Concerns\InteractsWithForms;
use Filament\Forms\Contracts\HasForms;
use Filament\Forms\Form;
use Illuminate\Contracts\View\View;
use Livewire\Component;

class CreatePost extends Component implements HasForms
{
use InteractsWithForms;

public ?array $data = [];

public function mount(): void
{
$this->form->fill();
}

public function form(Form $form): Form
{
return $form
->schema([
TextInput::make('subject')->maxLength(255)->required(),
Textarea::make('message')->minLength(2)->maxLength(50000),
])
->statePath('data');
}

public function create(): void
{
dd($this->form->getState());
}

public function render(): View
{
return view('livewire.create-post');
}
}
<?php

namespace App\Livewire;

use Filament\Forms\Components\Textarea;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Concerns\InteractsWithForms;
use Filament\Forms\Contracts\HasForms;
use Filament\Forms\Form;
use Illuminate\Contracts\View\View;
use Livewire\Component;

class CreatePost extends Component implements HasForms
{
use InteractsWithForms;

public ?array $data = [];

public function mount(): void
{
$this->form->fill();
}

public function form(Form $form): Form
{
return $form
->schema([
TextInput::make('subject')->maxLength(255)->required(),
Textarea::make('message')->minLength(2)->maxLength(50000),
])
->statePath('data');
}

public function create(): void
{
dd($this->form->getState());
}

public function render(): View
{
return view('livewire.create-post');
}
}
12 replies
FFilament
Created by heat23. on 6/13/2024 in #❓┊help
Getting started with Filament 3.3 - Need beginner help with FORMS
Thank you - Is there a modal example there?
53 replies
FFilament
Created by heat23. on 6/13/2024 in #❓┊help
Getting started with Filament 3.3 - Need beginner help with FORMS
ahhh of course human error, I see it now. sigh..thanks for spending the time to find the issue
53 replies