roy688/laravel-querylist is a Laravel package.
It currently has 0 GitHub stars and 1.112 downloads on Packagist (latest version 1.0.3).
Install it with composer require roy688/laravel-querylist.
Discover more Laravel packages by roy688
or browse all Laravel packages to compare alternatives.
Last updated
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.
composer require roy688/laravel-querylist
// ./routes/web.php
Route::get('/', function () {
$ql = QueryList::get('http://cms.querylist.cc/bizhi/453.html')->find('img')->attrs('src');
print_r($ql->all());
});