Rewrite blade from package LaravelPHP: Delete an element from an arrayHow do I get a YouTube video thumbnail from the YouTube API?Remove the last character from stringHow to Set Variables in a Laravel Blade TemplateLaravel requires the Mcrypt PHP extensionHow to Get the Current URL Inside @if Statement (Blade) in Laravel 4?Best Practices for Custom Helpers in Laravel 5Laravel 5: Display HTML with BladeSwitch in Laravel 5 - BladeLaravel 5.7 - “orderBy” Not Sorting Results
How can I write humor as character trait?
Do we have to expect a queue for the shuttle from Watford Junction to Harry Potter Studio?
Strong empirical falsification of quantum mechanics based on vacuum energy density?
Quoting Keynes in a lecture
Why can't the Brexit deadlock in the UK parliament be solved with a plurality vote?
Can I say "fingers" when referring to toes?
Microchip documentation does not label CAN buss pins on micro controller pinout diagram
Short story about a deaf man, who cuts people tongues
Make a Bowl of Alphabet Soup
How would you translate "more" for use as an interface button?
awk assign to multiple variables at once
Did the UK lift the requirement for registering SIM cards?
Which Article Helped Get Rid of Technobabble in RPGs?
The IT department bottlenecks progress, how should I handle this?
Why do Radio Buttons not fill the entire outer circle?
What is the highest possible scrabble score for placing a single tile
What kind of floor tile is this?
Why is it that I can sometimes guess the next note?
A variation to the phrase "hanging over my shoulders"
How many arrows is an archer expected to fire by the end of the Tyranny of Dragons pair of adventures?
"It doesn't matter" or "it won't matter"?
What does Apple's new App Store requirement mean
Does Doodling or Improvising on the Piano Have Any Benefits?
Does the reader need to like the PoV character?
Rewrite blade from package Laravel
PHP: Delete an element from an arrayHow do I get a YouTube video thumbnail from the YouTube API?Remove the last character from stringHow to Set Variables in a Laravel Blade TemplateLaravel requires the Mcrypt PHP extensionHow to Get the Current URL Inside @if Statement (Blade) in Laravel 4?Best Practices for Custom Helpers in Laravel 5Laravel 5: Display HTML with BladeSwitch in Laravel 5 - BladeLaravel 5.7 - “orderBy” Not Sorting Results
I have installed package: https://github.com/barryvdh/laravel-translation-manager
I need return other view with custom template. How I can do it?
I finded this method:
public function getIndex($group = null)
$locales = $this->manager->getLocales();
$groups = Translation::groupBy('group');
$excludedGroups = $this->manager->getConfig('exclude_groups');
if($excludedGroups)
$groups->whereNotIn('group', $excludedGroups);
$groups = $groups->select('group')->orderBy('group')->get()->pluck('group', 'group');
if ($groups instanceof Collection)
$groups = $groups->all();
$groups = [''=>'Choose a group'] + $groups;
$numChanged = Translation::where('group', $group)->where('status', Translation::STATUS_CHANGED)->count();
$allTranslations = Translation::where('group', $group)->orderBy('key', 'asc')->get();
$numTranslations = count($allTranslations);
$translations = [];
foreach($allTranslations as $translation)
$translations[$translation->key][$translation->locale] = $translation;
return view('translation-manager::index')
->with('translations', $translations)
->with('locales', $locales)
->with('groups', $groups)
->with('group', $group)
->with('numTranslations', $numTranslations)
->with('numChanged', $numChanged)
->with('editUrl', action('BarryvdhTranslationManagerController@postEdit', [$group]))
->with('deleteEnabled', $this->manager->getConfig('delete_enabled'));
How I can return my view? I need go in vendor?
php laravel
|
show 8 more comments
I have installed package: https://github.com/barryvdh/laravel-translation-manager
I need return other view with custom template. How I can do it?
I finded this method:
public function getIndex($group = null)
$locales = $this->manager->getLocales();
$groups = Translation::groupBy('group');
$excludedGroups = $this->manager->getConfig('exclude_groups');
if($excludedGroups)
$groups->whereNotIn('group', $excludedGroups);
$groups = $groups->select('group')->orderBy('group')->get()->pluck('group', 'group');
if ($groups instanceof Collection)
$groups = $groups->all();
$groups = [''=>'Choose a group'] + $groups;
$numChanged = Translation::where('group', $group)->where('status', Translation::STATUS_CHANGED)->count();
$allTranslations = Translation::where('group', $group)->orderBy('key', 'asc')->get();
$numTranslations = count($allTranslations);
$translations = [];
foreach($allTranslations as $translation)
$translations[$translation->key][$translation->locale] = $translation;
return view('translation-manager::index')
->with('translations', $translations)
->with('locales', $locales)
->with('groups', $groups)
->with('group', $group)
->with('numTranslations', $numTranslations)
->with('numChanged', $numChanged)
->with('editUrl', action('BarryvdhTranslationManagerController@postEdit', [$group]))
->with('deleteEnabled', $this->manager->getConfig('delete_enabled'));
How I can return my view? I need go in vendor?
php laravel
Never modify vendor! Run$ php artisan vendor:publish --provider="BarryvdhTranslationManagerManagerServiceProvider" --tag=views
. This will copy templates from vendor to theresources/views/vendor/translation-manager
where you are free to do anything you want.
– Haru
18 hours ago
@Haru I know it. How I can integrate custom layout in this blade? I have layout of voyager admin, but if I do extends layout of voyager admin, then I get error undefinded variable: $group
– Dronax
18 hours ago
Can you briefly explain what exactly do you do after you callvendor:publish
? Can you show me how your new template file look like?
– Haru
18 hours ago
@Haru See please: github.com/the-control-group/voyager/blob/1.2/resources/views/…
– Dronax
17 hours ago
@Haru I want extend this layout to blade of translation manager.
– Dronax
17 hours ago
|
show 8 more comments
I have installed package: https://github.com/barryvdh/laravel-translation-manager
I need return other view with custom template. How I can do it?
I finded this method:
public function getIndex($group = null)
$locales = $this->manager->getLocales();
$groups = Translation::groupBy('group');
$excludedGroups = $this->manager->getConfig('exclude_groups');
if($excludedGroups)
$groups->whereNotIn('group', $excludedGroups);
$groups = $groups->select('group')->orderBy('group')->get()->pluck('group', 'group');
if ($groups instanceof Collection)
$groups = $groups->all();
$groups = [''=>'Choose a group'] + $groups;
$numChanged = Translation::where('group', $group)->where('status', Translation::STATUS_CHANGED)->count();
$allTranslations = Translation::where('group', $group)->orderBy('key', 'asc')->get();
$numTranslations = count($allTranslations);
$translations = [];
foreach($allTranslations as $translation)
$translations[$translation->key][$translation->locale] = $translation;
return view('translation-manager::index')
->with('translations', $translations)
->with('locales', $locales)
->with('groups', $groups)
->with('group', $group)
->with('numTranslations', $numTranslations)
->with('numChanged', $numChanged)
->with('editUrl', action('BarryvdhTranslationManagerController@postEdit', [$group]))
->with('deleteEnabled', $this->manager->getConfig('delete_enabled'));
How I can return my view? I need go in vendor?
php laravel
I have installed package: https://github.com/barryvdh/laravel-translation-manager
I need return other view with custom template. How I can do it?
I finded this method:
public function getIndex($group = null)
$locales = $this->manager->getLocales();
$groups = Translation::groupBy('group');
$excludedGroups = $this->manager->getConfig('exclude_groups');
if($excludedGroups)
$groups->whereNotIn('group', $excludedGroups);
$groups = $groups->select('group')->orderBy('group')->get()->pluck('group', 'group');
if ($groups instanceof Collection)
$groups = $groups->all();
$groups = [''=>'Choose a group'] + $groups;
$numChanged = Translation::where('group', $group)->where('status', Translation::STATUS_CHANGED)->count();
$allTranslations = Translation::where('group', $group)->orderBy('key', 'asc')->get();
$numTranslations = count($allTranslations);
$translations = [];
foreach($allTranslations as $translation)
$translations[$translation->key][$translation->locale] = $translation;
return view('translation-manager::index')
->with('translations', $translations)
->with('locales', $locales)
->with('groups', $groups)
->with('group', $group)
->with('numTranslations', $numTranslations)
->with('numChanged', $numChanged)
->with('editUrl', action('BarryvdhTranslationManagerController@postEdit', [$group]))
->with('deleteEnabled', $this->manager->getConfig('delete_enabled'));
How I can return my view? I need go in vendor?
php laravel
php laravel
asked 18 hours ago
DronaxDronax
135
135
Never modify vendor! Run$ php artisan vendor:publish --provider="BarryvdhTranslationManagerManagerServiceProvider" --tag=views
. This will copy templates from vendor to theresources/views/vendor/translation-manager
where you are free to do anything you want.
– Haru
18 hours ago
@Haru I know it. How I can integrate custom layout in this blade? I have layout of voyager admin, but if I do extends layout of voyager admin, then I get error undefinded variable: $group
– Dronax
18 hours ago
Can you briefly explain what exactly do you do after you callvendor:publish
? Can you show me how your new template file look like?
– Haru
18 hours ago
@Haru See please: github.com/the-control-group/voyager/blob/1.2/resources/views/…
– Dronax
17 hours ago
@Haru I want extend this layout to blade of translation manager.
– Dronax
17 hours ago
|
show 8 more comments
Never modify vendor! Run$ php artisan vendor:publish --provider="BarryvdhTranslationManagerManagerServiceProvider" --tag=views
. This will copy templates from vendor to theresources/views/vendor/translation-manager
where you are free to do anything you want.
– Haru
18 hours ago
@Haru I know it. How I can integrate custom layout in this blade? I have layout of voyager admin, but if I do extends layout of voyager admin, then I get error undefinded variable: $group
– Dronax
18 hours ago
Can you briefly explain what exactly do you do after you callvendor:publish
? Can you show me how your new template file look like?
– Haru
18 hours ago
@Haru See please: github.com/the-control-group/voyager/blob/1.2/resources/views/…
– Dronax
17 hours ago
@Haru I want extend this layout to blade of translation manager.
– Dronax
17 hours ago
Never modify vendor! Run
$ php artisan vendor:publish --provider="BarryvdhTranslationManagerManagerServiceProvider" --tag=views
. This will copy templates from vendor to the resources/views/vendor/translation-manager
where you are free to do anything you want.– Haru
18 hours ago
Never modify vendor! Run
$ php artisan vendor:publish --provider="BarryvdhTranslationManagerManagerServiceProvider" --tag=views
. This will copy templates from vendor to the resources/views/vendor/translation-manager
where you are free to do anything you want.– Haru
18 hours ago
@Haru I know it. How I can integrate custom layout in this blade? I have layout of voyager admin, but if I do extends layout of voyager admin, then I get error undefinded variable: $group
– Dronax
18 hours ago
@Haru I know it. How I can integrate custom layout in this blade? I have layout of voyager admin, but if I do extends layout of voyager admin, then I get error undefinded variable: $group
– Dronax
18 hours ago
Can you briefly explain what exactly do you do after you call
vendor:publish
? Can you show me how your new template file look like?– Haru
18 hours ago
Can you briefly explain what exactly do you do after you call
vendor:publish
? Can you show me how your new template file look like?– Haru
18 hours ago
@Haru See please: github.com/the-control-group/voyager/blob/1.2/resources/views/…
– Dronax
17 hours ago
@Haru See please: github.com/the-control-group/voyager/blob/1.2/resources/views/…
– Dronax
17 hours ago
@Haru I want extend this layout to blade of translation manager.
– Dronax
17 hours ago
@Haru I want extend this layout to blade of translation manager.
– Dronax
17 hours ago
|
show 8 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55279888%2frewrite-blade-from-package-laravel%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55279888%2frewrite-blade-from-package-laravel%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Never modify vendor! Run
$ php artisan vendor:publish --provider="BarryvdhTranslationManagerManagerServiceProvider" --tag=views
. This will copy templates from vendor to theresources/views/vendor/translation-manager
where you are free to do anything you want.– Haru
18 hours ago
@Haru I know it. How I can integrate custom layout in this blade? I have layout of voyager admin, but if I do extends layout of voyager admin, then I get error undefinded variable: $group
– Dronax
18 hours ago
Can you briefly explain what exactly do you do after you call
vendor:publish
? Can you show me how your new template file look like?– Haru
18 hours ago
@Haru See please: github.com/the-control-group/voyager/blob/1.2/resources/views/…
– Dronax
17 hours ago
@Haru I want extend this layout to blade of translation manager.
– Dronax
17 hours ago