René's URL Explorer Experiment


Title: Multi Auth - one log out, only one log out · Issue #7 · DevMarketer/multiauth_tutorial · GitHub

Open Graph Title: Multi Auth - one log out, only one log out · Issue #7 · DevMarketer/multiauth_tutorial

X Title: Multi Auth - one log out, only one log out · Issue #7 · DevMarketer/multiauth_tutorial

Description: As your code if we log out any auth system that time all auth system log out . for solve this, can be extra added layouts/admin-app.blade.php

Open Graph Description: As your code if we log out any auth system that time all auth system log out . for solve this, can be extra added layouts/admin-app.blade.php ...

X Description: As your code if we log out any auth system that time all auth system log out . for solve this, can be extra added layouts/admin-app.blade.php <!DOCTYPE html> <html lang="{{ app()->...

Opengraph URL: https://github.com/DevMarketer/multiauth_tutorial/issues/7

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Multi Auth - one log out, only one log out ","articleBody":"As your code if we log out any auth system that time all auth system log out . for solve this, can be extra added `layouts/admin-app.blade.php`\r\n```php\r\n\u003c!DOCTYPE html\u003e\r\n\u003chtml lang=\"{{ app()-\u003egetLocale() }}\"\u003e\r\n\u003chead\u003e\r\n    \u003cmeta charset=\"utf-8\"\u003e\r\n    \u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"\u003e\r\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1\"\u003e\r\n\r\n    \u003c!-- CSRF Token --\u003e\r\n    \u003cmeta name=\"csrf-token\" content=\"{{ csrf_token() }}\"\u003e\r\n\r\n    \u003ctitle\u003e{{ config('app.name', 'Laravel') }}\u003c/title\u003e\r\n\r\n    \u003c!-- Styles --\u003e\r\n    \u003clink href=\"{{ asset('css/app.css') }}\" rel=\"stylesheet\"\u003e\r\n\u003c/head\u003e\r\n\u003cbody\u003e\r\n    \u003cdiv id=\"app\"\u003e\r\n        \u003cnav class=\"navbar navbar-default navbar-static-top\"\u003e\r\n            \u003cdiv class=\"container\"\u003e\r\n                \u003cdiv class=\"navbar-header\"\u003e\r\n\r\n                    \u003c!-- Collapsed Hamburger --\u003e\r\n                    \u003cbutton type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-target=\"#app-navbar-collapse\"\u003e\r\n                        \u003cspan class=\"sr-only\"\u003eToggle Navigation\u003c/span\u003e\r\n                        \u003cspan class=\"icon-bar\"\u003e\u003c/span\u003e\r\n                        \u003cspan class=\"icon-bar\"\u003e\u003c/span\u003e\r\n                        \u003cspan class=\"icon-bar\"\u003e\u003c/span\u003e\r\n                    \u003c/button\u003e\r\n\r\n                    \u003c!-- Branding Image --\u003e\r\n                    \u003ca class=\"navbar-brand\" href=\"{{ url('/') }}\"\u003e\r\n                        {{ config('app.name', 'Laravel') }}\r\n                    \u003c/a\u003e\r\n                \u003c/div\u003e\r\n\r\n                \u003cdiv class=\"collapse navbar-collapse\" id=\"app-navbar-collapse\"\u003e\r\n                    \u003c!-- Left Side Of Navbar --\u003e\r\n                    \u003cul class=\"nav navbar-nav\"\u003e\r\n                        \u0026nbsp;\r\n                    \u003c/ul\u003e\r\n\r\n                    \u003c!-- Right Side Of Navbar --\u003e\r\n                    \u003cul class=\"nav navbar-nav navbar-right\"\u003e\r\n                        \u003c!-- Authentication Links --\u003e\r\n                        @if (Auth::guest())\r\n                            \u003cli\u003e\u003ca href=\"{{ route('login') }}\"\u003eLogin\u003c/a\u003e\u003c/li\u003e\r\n                            \u003cli\u003e\u003ca href=\"{{ route('register') }}\"\u003eRegister\u003c/a\u003e\u003c/li\u003e\r\n                        @else\r\n                            \u003cli class=\"dropdown\"\u003e\r\n                                \u003ca href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" aria-expanded=\"false\"\u003e\r\n                                    {{ Auth::user()-\u003ename }} \u003cspan class=\"caret\"\u003e\u003c/span\u003e\r\n                                \u003c/a\u003e\r\n\r\n                                \u003cul class=\"dropdown-menu\" role=\"menu\"\u003e\r\n\r\n                                    \u003cli\u003e\r\n                                        \u003ca href=\"{{ route('admin.logout') }}\"\r\n                                            onclick=\"event.preventDefault();\r\n                                                     document.getElementById('logout-form').submit();\"\u003e\r\n                                            Logout\r\n                                        \u003c/a\u003e\r\n\r\n                                        \u003cform id=\"logout-form\" action=\"{{ route('admin.logout') }}\" method=\"POST\" style=\"display: none;\"\u003e\r\n                                            {{ csrf_field() }}\r\n                                        \u003c/form\u003e\r\n                                    \u003c/li\u003e\r\n                                    \u003cli\u003e\r\n                                      \u003ca href=\"{{ route('admin.logout') }}\"\u003elog out admin\u003c/a\u003e\r\n                                    \u003c/li\u003e\r\n\r\n\r\n                                \u003c/ul\u003e\r\n                            \u003c/li\u003e\r\n                        @endif\r\n                    \u003c/ul\u003e\r\n                \u003c/div\u003e\r\n            \u003c/div\u003e\r\n        \u003c/nav\u003e\r\n\r\n        @yield('content')\r\n    \u003c/div\u003e\r\n\r\n    \u003c!-- Scripts --\u003e\r\n    \u003cscript src=\"{{ asset('js/app.js') }}\"\u003e\u003c/script\u003e\r\n\u003c/body\u003e\r\n\u003c/html\u003e\r\n```\r\nand add this `admin.blade.php`\r\n```php\r\n@extends('layouts.admin-app')\r\n\r\n@section('content')\r\n\u003cdiv class=\"container\"\u003e\r\n    \u003cdiv class=\"row\"\u003e\r\n        \u003cdiv class=\"col-md-8 col-md-offset-2\"\u003e\r\n            \u003cdiv class=\"panel panel-default\"\u003e\r\n                \u003cdiv class=\"panel-heading\"\u003e Admin Dashboard\u003c/div\u003e\r\n\r\n                \u003cdiv class=\"panel-body\"\u003e\r\n                    @component('components.who')\r\n\r\n                    @endcomponent\r\n                \u003c/div\u003e\r\n            \u003c/div\u003e\r\n        \u003c/div\u003e\r\n    \u003c/div\u003e\r\n\u003c/div\u003e\r\n@endsection\r\n```\r\n`route`\r\n```php\r\nRoute::post('/logout', 'Auth\\AdminLoginController@logout')-\u003ename('admin.logout');\r\n```\r\n\r\n-----------------------------------------------\r\nor , `app.blade.php`\r\n```php\r\n\u003c!DOCTYPE html\u003e\r\n\u003chtml lang=\"{{ app()-\u003egetLocale() }}\"\u003e\r\n\u003chead\u003e\r\n    \u003cmeta charset=\"utf-8\"\u003e\r\n    \u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"\u003e\r\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1\"\u003e\r\n\r\n    \u003c!-- CSRF Token --\u003e\r\n    \u003cmeta name=\"csrf-token\" content=\"{{ csrf_token() }}\"\u003e\r\n\r\n    \u003ctitle\u003e{{ config('app.name', 'Laravel') }}\u003c/title\u003e\r\n\r\n    \u003c!-- Styles --\u003e\r\n    \u003clink href=\"{{ asset('css/app.css') }}\" rel=\"stylesheet\"\u003e\r\n\u003c/head\u003e\r\n\u003cbody\u003e\r\n    \u003cdiv id=\"app\"\u003e\r\n        \u003cnav class=\"navbar navbar-default navbar-static-top\"\u003e\r\n            \u003cdiv class=\"container\"\u003e\r\n                \u003cdiv class=\"navbar-header\"\u003e\r\n\r\n                    \u003c!-- Collapsed Hamburger --\u003e\r\n                    \u003cbutton type=\"button\" class=\"navbar-toggle collapsed\" data-toggle=\"collapse\" data-target=\"#app-navbar-collapse\"\u003e\r\n                        \u003cspan class=\"sr-only\"\u003eToggle Navigation\u003c/span\u003e\r\n                        \u003cspan class=\"icon-bar\"\u003e\u003c/span\u003e\r\n                        \u003cspan class=\"icon-bar\"\u003e\u003c/span\u003e\r\n                        \u003cspan class=\"icon-bar\"\u003e\u003c/span\u003e\r\n                    \u003c/button\u003e\r\n\r\n                    \u003c!-- Branding Image --\u003e\r\n                    \u003ca class=\"navbar-brand\" href=\"{{ url('/') }}\"\u003e\r\n                        {{ config('app.name', 'Laravel') }}\r\n                    \u003c/a\u003e\r\n                \u003c/div\u003e\r\n\r\n                \u003cdiv class=\"collapse navbar-collapse\" id=\"app-navbar-collapse\"\u003e\r\n                    \u003c!-- Left Side Of Navbar --\u003e\r\n                    \u003cul class=\"nav navbar-nav\"\u003e\r\n                        \u0026nbsp;\r\n                    \u003c/ul\u003e\r\n\r\n                    \u003c!-- Right Side Of Navbar --\u003e\r\n                    \u003cul class=\"nav navbar-nav navbar-right\"\u003e\r\n                        \u003c!-- Authentication Links --\u003e\r\n                        @if (Auth::guest())\r\n                            \u003cli\u003e\u003ca href=\"{{ route('login') }}\"\u003eLogin\u003c/a\u003e\u003c/li\u003e\r\n                            \u003cli\u003e\u003ca href=\"{{ route('register') }}\"\u003eRegister\u003c/a\u003e\u003c/li\u003e\r\n                        @else\r\n                            \u003cli class=\"dropdown\"\u003e\r\n                                \u003ca href=\"#\" class=\"dropdown-toggle\" data-toggle=\"dropdown\" role=\"button\" aria-expanded=\"false\"\u003e\r\n                                    {{ Auth::user()-\u003ename }} \u003cspan class=\"caret\"\u003e\u003c/span\u003e\r\n                                \u003c/a\u003e\r\n\r\n                                \u003cul class=\"dropdown-menu\" role=\"menu\"\u003e\r\n\r\n                                  @if (Auth::guard('web')-\u003echeck())\r\n                                    \u003cli\u003e\r\n                                        \u003ca href=\"{{ route('logout') }}\"\r\n                                            onclick=\"event.preventDefault();\r\n                                                     document.getElementById('logout-form').submit();\"\u003e\r\n                                            Logout\r\n                                        \u003c/a\u003e\r\n\r\n                                        \u003cform id=\"logout-form\" action=\"{{ route('logout') }}\" method=\"POST\" style=\"display: none;\"\u003e\r\n                                            {{ csrf_field() }}\r\n                                        \u003c/form\u003e\r\n                                    \u003c/li\u003e\r\n                                  @elseif (Auth::guard('admin')-\u003echeck())\r\n                                    \u003cli\u003e\r\n                                        \u003ca href=\"{{ route('admin.logout') }}\"\r\n                                            onclick=\"event.preventDefault();\r\n                                                     document.getElementById('logout-form').submit();\"\u003e\r\n                                            Logout\r\n                                        \u003c/a\u003e\r\n\r\n                                        \u003cform id=\"logout-form\" action=\"{{ route('admin.logout') }}\" method=\"POST\" style=\"display: none;\"\u003e\r\n                                            {{ csrf_field() }}\r\n                                        \u003c/form\u003e\r\n                                    \u003c/li\u003e\r\n                                  @endif\r\n\r\n\r\n\r\n                                \u003c/ul\u003e\r\n                            \u003c/li\u003e\r\n                        @endif\r\n                    \u003c/ul\u003e\r\n                \u003c/div\u003e\r\n            \u003c/div\u003e\r\n        \u003c/nav\u003e\r\n\r\n        @yield('content')\r\n    \u003c/div\u003e\r\n\r\n    \u003c!-- Scripts --\u003e\r\n    \u003cscript src=\"{{ asset('js/app.js') }}\"\u003e\u003c/script\u003e\r\n\u003c/body\u003e\r\n\u003c/html\u003e\r\n```\r\n`route`\r\n```php\r\n  Route::post('/logout', 'Auth\\AdminLoginController@logout')-\u003ename('admin.logout');\r\n```","author":{"url":"https://github.com/mostafa6765","@type":"Person","name":"mostafa6765"},"datePublished":"2017-06-07T06:16:27.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/7/multiauth_tutorial/issues/7"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:82055141-01ac-e3a4-50a6-bb6afaa74553
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id8D9A:2AF233:4BC51F4:68222F6:6A5E273B
html-safe-noncea2811d60f5ff66c1fae0328aa5898ef072ba818be549369fdfe50c6c5ca4f3f3
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4RDlBOjJBRjIzMzo0QkM1MUY0OjY4MjIyRjY6NkE1RTI3M0IiLCJ2aXNpdG9yX2lkIjoiMzU2OTIxMTY2NTUwMTAwNTYyOCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac8a79c9f87cff731220a74223bc7c1d25aa2daabb493dd447e19aefa749fe8396
hovercard-subject-tagissue:234103005
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/DevMarketer/multiauth_tutorial/7/issue_layout
twitter:imagehttps://opengraph.githubassets.com/36deaa02b0f1e50a2d472e1e5d7eefa4e80f7ae92ccb1ba87c7fc918ec4f47f6/DevMarketer/multiauth_tutorial/issues/7
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/36deaa02b0f1e50a2d472e1e5d7eefa4e80f7ae92ccb1ba87c7fc918ec4f47f6/DevMarketer/multiauth_tutorial/issues/7
og:image:altAs your code if we log out any auth system that time all auth system log out . for solve this, can be extra added layouts/admin-app.blade.php ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamemostafa6765
hostnamegithub.com
expected-hostnamegithub.com
Nonee5010f4d2748a3cbef86e1580413ff14701bd99f255268dfb4a2857c77e2cc7c
turbo-cache-controlno-preview
go-importgithub.com/DevMarketer/multiauth_tutorial git https://github.com/DevMarketer/multiauth_tutorial.git
octolytics-dimension-user_id20360951
octolytics-dimension-user_loginDevMarketer
octolytics-dimension-repository_id83099431
octolytics-dimension-repository_nwoDevMarketer/multiauth_tutorial
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id83099431
octolytics-dimension-repository_network_root_nwoDevMarketer/multiauth_tutorial
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release7d23604c4a8ce0274b4c71bb2adbe6e1c9d5904f
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/DevMarketer/multiauth_tutorial/issues/7#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FDevMarketer%2Fmultiauth_tutorial%2Fissues%2F7
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FDevMarketer%2Fmultiauth_tutorial%2Fissues%2F7
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=DevMarketer%2Fmultiauth_tutorial
Reloadhttps://github.com/DevMarketer/multiauth_tutorial/issues/7
Reloadhttps://github.com/DevMarketer/multiauth_tutorial/issues/7
Reloadhttps://github.com/DevMarketer/multiauth_tutorial/issues/7
Please reload this pagehttps://github.com/DevMarketer/multiauth_tutorial/issues/7
DevMarketer https://github.com/DevMarketer
multiauth_tutorialhttps://github.com/DevMarketer/multiauth_tutorial
Notifications https://github.com/login?return_to=%2FDevMarketer%2Fmultiauth_tutorial
Fork 83 https://github.com/login?return_to=%2FDevMarketer%2Fmultiauth_tutorial
Star 152 https://github.com/login?return_to=%2FDevMarketer%2Fmultiauth_tutorial
Code https://github.com/DevMarketer/multiauth_tutorial
Issues 13 https://github.com/DevMarketer/multiauth_tutorial/issues
Pull requests 16 https://github.com/DevMarketer/multiauth_tutorial/pulls
Actions https://github.com/DevMarketer/multiauth_tutorial/actions
Projects https://github.com/DevMarketer/multiauth_tutorial/projects
Security and quality 0 https://github.com/DevMarketer/multiauth_tutorial/security
Insights https://github.com/DevMarketer/multiauth_tutorial/pulse
Code https://github.com/DevMarketer/multiauth_tutorial
Issues https://github.com/DevMarketer/multiauth_tutorial/issues
Pull requests https://github.com/DevMarketer/multiauth_tutorial/pulls
Actions https://github.com/DevMarketer/multiauth_tutorial/actions
Projects https://github.com/DevMarketer/multiauth_tutorial/projects
Security and quality https://github.com/DevMarketer/multiauth_tutorial/security
Insights https://github.com/DevMarketer/multiauth_tutorial/pulse
Multi Auth - one log out, only one log out https://github.com/DevMarketer/multiauth_tutorial/issues/7#top
https://github.com/mostafa6765
mostafa6765https://github.com/mostafa6765
on Jun 7, 2017https://github.com/DevMarketer/multiauth_tutorial/issues/7#issue-234103005
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.