roy688/laravel-querylist

Installs: 1 012

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 1

Open Issues: 0

Type:laravel-packages

1.0.3 2019-01-05 07:16 UTC

This package is auto-updated.

Last update: 2024-04-05 19:11:39 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());
});