DEV Community

Discussion on: Creating Your First Blog With TALL - Part Five

Collapse
 
pablo_rica profile image
Pablo Rica

Also, you can generate an slug in the Livewire component using Illuminate\Support\Str

//use Illuminate\Support\Str;
    public function render() {
        $this->post->slug = Str::slug($this->post->post_title);
        return view('livewire.post-item');
    }
Enter fullscreen mode Exit fullscreen mode