To create a tabbed view in Laravel Blade for "My Organizations" and "All Organizations," you can use Bootstrap, a popular CSS framework. Below is an example:
Steps:
Add Bootstrap CSS and JS:
Include the Bootstrap CSS and JS files in your Blade layout file, e.g.,app.blade.php
.Create a Blade File with Tabs:
Create a Blade view file, e.g.,organizations.blade.php
.Pass Data to the View:
In your controller, pass themyOrganizations
andallOrganizations
collections to the view.Route to the View:
Add a route for the controller method inweb.php
.
Result:
- A tabbed interface where:
- The "My Organizations" tab lists only the organizations related to the logged-in user.
- The "All Organizations" tab lists all organizations in the database.
No comments:
Post a Comment