Answers for "create slug with laravel"

PHP
1

laravel generate slug

<?php

namespace AppHttpControllersAdmin;

use AppHttpControllersController;
use IlluminateSupportStr;

class SlugController extends Controller
{
    public function show()
    {
        $slug = [
            Str::slug('Laravel 5 Framework', '-'),
            Str::slug('артел модеб 65 маркаси', '-'),
            Str::slug('Namangan viloyati ', '-'),
            ];
        return $slug;
    }
}
Posted by: Guest on January-07-2022
0

how to create slug in laravel

public function setTitleAttribute($value)
{
    $this->attributes['title'] = $value;
    $this->attributes['slug'] = str_slug($value);
}
Posted by: Guest on December-04-2021

Browse Popular Code Answers by Language