roy688 / laravel-querylist
Installs: 1 110
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
Type:laravel-packages
Requires
- jaeger/querylist: ^4.0
This package is auto-updated.
Last update: 2025-03-05 21:09:55 UTC
README
Laravel5 facade for QueryList.
-
This repository implements a simple ServiceProvider that makes a singleton instance of the QueryList easily accessible via a Facade in Laravel 5.5 package auto-discovery.
-
jae-jae/QueryList for more information.
Requirements
- Laravel 5.5
Installation
composer require roy688/laravel-querylist
Usage
// ./routes/web.php
Route::get('/', function () {
$ql = QueryList::get('http://cms.querylist.cc/bizhi/453.html')->find('img')->attrs('src');
print_r($ql->all());
});