Skip to content

Instantly share code, notes, and snippets.

@ismaeltoe
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ismaeltoe/159f4f7ed3929c46a3d3 to your computer and use it in GitHub Desktop.
Save ismaeltoe/159f4f7ed3929c46a3d3 to your computer and use it in GitHub Desktop.
Update slug value (Laravel)
<?php
use Illuminate\Database\Seeder;
class OffreTableSeeder extends Seeder {
public function run() {
$offres = DB::table('offres')->select('id', 'libelle')->get();
foreach ($offres as $offre) {
DB::table('offres')
->where('id', $offre->id)
->update([
'slug' => str_slug($offre->libelle, '-')
]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment