Hello,
Im using cviebrock/eloquent-sluggable and wanna make unique slug for news table. News model:
class News extends Eloquent implements SluggableInterface {
protected $table = 'news';
protected $fillable = ['title','content','image','slug'];
use SluggableTrait;
protected $sluggable = array(
'build_from' => 'title',
'save_to' => 'slug',
);
}
Can i build slug from title and random string? How it looks like?
Route::get('/news/post/{title}/{other_random_string}', NewsController@handlePostCreate);
//Controller
NewsController extends BaseController
{
public function handlePostCreate(title, other_random_string)
{
var_dump($title);
var_dump($other_random_string);
}
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community