Imran Rahman
Imran Rahman

Reputation: 16

laravel slug post not working for Bangla language but English work fine

$data['slug']  = str_replace(' ','-', $request->slug);

Results in the error

Sorry, the page you are looking for could not be found.

Upvotes: 0

Views: 162

Answers (1)

FULL STACK DEV
FULL STACK DEV

Reputation: 15971

Here is the other way to approach this.

use laravel slug str_slug($request->slug)

Upvotes: 1

Related Questions