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













1















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?










share|improve this question






















  • 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











  • 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















1















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?










share|improve this question






















  • 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











  • 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













1












1








1








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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










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 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











  • 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

















  • 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











  • 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
















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












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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript