Attributes
app()->setLocale('en');
echo $post->title; // My first post
echo $post->{'title:de'}; // Mein erster Beitrag
$post->title = 'My first edited post';
echo $post->title; // My first edited postLast updated
Was this helpful?
app()->setLocale('en');
echo $post->title; // My first post
echo $post->{'title:de'}; // Mein erster Beitrag
$post->title = 'My first edited post';
echo $post->title; // My first edited postLast updated
Was this helpful?
Was this helpful?