emil
emil
TCTwill CMS
Created by emil on 3/28/2025 in #👊support
Permissions: how to set (leave untouched) default value of field
sometimes I cannot find the one tree in the wood - just figured out that I have set a required validation rule on the FormRequest Class. So, ending up with this solution makes the thing working:
public function rulesForUpdate()
{
$titleRules = [
Rule::unique('pages', 'title')->ignore($this->route('category')),
Rule::unique('categories', 'title')->ignore($this->route('category')),
];

if (auth()->user()->can('manage_settings')) {
$titleRules[] = 'required';
}

return [
'title' => $titleRules,
'intro' => 'nullable|max:1200',
];
}
public function rulesForUpdate()
{
$titleRules = [
Rule::unique('pages', 'title')->ignore($this->route('category')),
Rule::unique('categories', 'title')->ignore($this->route('category')),
];

if (auth()->user()->can('manage_settings')) {
$titleRules[] = 'required';
}

return [
'title' => $titleRules,
'intro' => 'nullable|max:1200',
];
}
2 replies
TCTwill CMS
Created by emil on 11/8/2023 in #👊support
DatePicker problem
Hi @ifox - thank you! This means on the other side, on getting the value back - to either transform the value to my timezone via accessor in the model, or for the ui in index view (table column) to make use of the customRender method - is that the intended behavior? Background: Yesterday I was upgrading one of my websites with twill 2 and laravel 9 and on doing this I started to refactor some things .... in the end and after hours I was really confused so I started to play with a fresh installed laravel and twill app, but the behavior still didn't change. One thing I didn't know was that the twill UI automatically uses my computers timezone. This is now more understandable for me - thank you!
3 replies