Package Data | |
---|---|
Maintainer Username: | junthink |
Maintainer Contact: | junthink@gamail.com (junthink) |
Package Create Date: | 2023-08-04 |
Package Last Update: | 2023-08-04 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-01-01 03:10:15 |
Package Statistics | |
---|---|
Total Downloads: | 41 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 0 |
Total Forks: | 0 |
Total Open Issues: | 0 |
The library help you to verify Admob callback in server.
composer require junthink/lumen-admob-ssv
use junthink\LaravelAdmobSsv\AdMob;
use Illuminate\Http\Request;
public function callback(Request $request) {
$adMob = new AdMob($request);
if ($adMob->validate()) {
// success
} else {
// failed
}
}