agg
This commit is contained in:
@@ -36,7 +36,7 @@
|
|||||||
<h1>Links</h1>
|
<h1>Links</h1>
|
||||||
<form id="articleForm">
|
<form id="articleForm">
|
||||||
<label for="article_id">ID Articolo:</label>
|
<label for="article_id">ID Articolo:</label>
|
||||||
<input type="text" id="article_id" name="id" value="21569"/>
|
<input type="text" id="article_id" name="id" value="{{$id}}"/>
|
||||||
<br>
|
<br>
|
||||||
<button type="button" data-action="search">Cerca Articolo</button>
|
<button type="button" data-action="search">Cerca Articolo</button>
|
||||||
<button type="button" data-action="checkPrevendita">E' in PreVendita?</button>
|
<button type="button" data-action="checkPrevendita">E' in PreVendita?</button>
|
||||||
|
|||||||
@@ -6168,8 +6168,9 @@ Route::get('/paolibri', function () {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Route::get('/mylinkspao', function () {
|
Route::get('/mylinkspao', function (Illuminate\Http\Request $request) {
|
||||||
return view('mylinkspao');
|
$id = $request->query('id');
|
||||||
|
return view('mylinkspao', ['id' => $id]);
|
||||||
});
|
});
|
||||||
|
|
||||||
Route::get('/handle-article-action-pao/{id}/{action}', function ($id, $action) {
|
Route::get('/handle-article-action-pao/{id}/{action}', function ($id, $action) {
|
||||||
|
|||||||
Reference in New Issue
Block a user