2018-06-12 04:34:00 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Web Routes
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
|
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
|
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
|
|
2022-06-09 12:14:12 +00:00
|
|
|
*/
|
|
|
|
|
|
2022-06-09 17:23:30 +00:00
|
|
|
Route::get('app-ads.txt',function(){
|
2022-06-09 12:14:12 +00:00
|
|
|
return 'facebook.com, 333307141073441, RESELLER, c3e20eee3f780d68';
|
2022-08-30 07:21:06 +00:00
|
|
|
});
|
|
|
|
|
Route::get('/.well-known/pki-validation/CC905B7DBFC9820D09FF9B24B5F8782C.txt',function (){
|
|
|
|
|
$view = \Illuminate\Support\Facades\Blade::render("{{asset('ssl.txt')}}");
|
|
|
|
|
return $view;
|
2022-06-09 12:14:12 +00:00
|
|
|
});
|