Git Product home page Git Product logo

Comments (6)

welcome avatar welcome commented on August 22, 2024

Hello there! Thanks for opening your first issue on this repo!

Just a heads-up: Here at Backpack we use Github Issues only for tracking bugs. Talk about new features is also acceptable. This helps a lot in keeping our focus on improving Backpack. If you issue is not a bug/feature, please help us out by closing the issue yourself and posting in the appropriate medium (see below). If you're not sure where it fits, it's ok, a community member will probably reply to help you with that.

Backpack communication mediums:

  • Bug Reports, Feature Requests - Github Issues (here);
  • Quick help (How do I do X) - Gitter Chatroom;
  • Long questions (I have done X and Y and it won't do Z wtf) - Stackoverflow, using the backpack-for-laravel tag;

Please keep in mind Backpack offers no official / paid support. Whatever help you receive here, on Gitter, Slack or Stackoverflow is thanks to our awesome awesome community members, who give up some of their time to help their peers. If you want to join our community, just start pitching in. We take pride in being a welcoming bunch.

Thank you!

--
Justin Case
The Backpack Robot

from pagemanager.

karandatwani92 avatar karandatwani92 commented on August 22, 2024

Hello @adrienne

Do you want your page view to open inside a parent layout?
For that, You are free to extend any parent layout for your page using @extends('parent_view')

Let me know what you mean by this is something else.

from pagemanager.

adrienne avatar adrienne commented on August 22, 2024

@karandatwani92 No, I mean for URLs and organization.

So for instance maybe i have a page "About Us", at url /about-us

And then I want to add a page "Team" and its URL should be /about-us/team -- UNDERNEATH the About Us page.

from pagemanager.

karandatwani92 avatar karandatwani92 commented on August 22, 2024

Hi @adrienne
Got your point, It's related to the route in web.php.
You can define a route in this order as per your need:

Route::get('about-us/{page}/{subs?}', ['uses' => '\App\Http\Controllers\PageController@index'])
    ->where(['page' => '^(((?=(?!admin))(?=(?!\/)).))*$', 'subs' => '.*']);

//this would be last one
Route::get('{page}/{subs?}', ['uses' => '\App\Http\Controllers\PageController@index'])
    ->where(['page' => '^(((?=(?!admin))(?=(?!\/)).))*$', 'subs' => '.*']);

and in page manager, your slug would be team

Or simply replace the main route to

Route::get('/{slug}', '\App\Http\Controllers\PageController@index')->where('slug', '(.*)');

In this case page slug would be about-us/team

This could be done in many other ways too, depending on the developer's choice.

I hope this helps
The front end is not part of the Backpack. The route and page controller are there as an example only.
Let us know if there is something else, We are closing the issue for now.

Regards

from pagemanager.

adrienne avatar adrienne commented on August 22, 2024

Yeah, that's still not what I'm asking, but it's okay, I found a different package to use.

from pagemanager.

karandatwani92 avatar karandatwani92 commented on August 22, 2024

@adrienne can you share the package link..so we could understand the implementation you want.

from pagemanager.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.