We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i need custom agent with name mobile web view app because i need hidden same menu in mobile web view and show in mobile browser ??
The text was updated successfully, but these errors were encountered:
You can always pass the user-agent string on class instantiation, like this:
use Jenssegers\Agent\Agent; $agent = new Agent(null, 'mobile web view app');
also, there is another option to pass custom user-agent to specific methods:
$agent = app()->make('agent'); // $agent = \Illuminate\Support\Facades\App::make('agent'); $isMobile = Agent::isMobile('mobile web view app'); // your custom user-agent string
Hope I get your requirement right.
Sorry, something went wrong.
No branches or pull requests
i need custom agent with name mobile web view app because i need hidden same menu in mobile web view and show in mobile browser ??
The text was updated successfully, but these errors were encountered: