goosechaser

Results 5 comments of goosechaser

OK, so the problem was that I was extending `\Polyglot\PolyglotServiceProvider` and not `\Polyglot\Polyglot`. Now I am facing another issue: it's looking for `cars_lang.cars_id` when I try to use the `fill`...

Also: ``` $article->fill([ 'title' => 'Titre', 'content' => 'Contenu', 'lang' => 'fr', ])->save(); // Is the same as $article->fr->fill([ 'title' => 'Titre', 'content' => 'Contenu', ])->save(); ``` It's not the...

Also, a suggestion: if the language translation does not exist (i.e., `$cars->it->title`), it should automatically fall back to `$cars->title`.

Grouping is fine. My concern is that the rendered script path contains those filenames, and there should be an option to exclude it (for some environments). `site.js` in production should...

My use case: 2 manifests, one for development and one for production environments. Each environment contains a different set of assets. Perhaps a configuration option to disable that?