PHP code example of lexxyungcarter / ziggy
1. Go to this page and download the library: Download lexxyungcarter/ziggy library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
lexxyungcarter / ziggy example snippets
return [
// 'whitelist' => ['home', 'api.*'],
'blacklist' => ['debugbar.*', 'horizon.*', 'admin.*'],
];
Route::whitelist(function () {
Route::get('...')->name('posts');
});
Route::whitelist()->get('...')->name('posts');
Route::blacklist(function () {
Route::get('...')->name('posts');
});
Route::blacklist()->get('...')->name('posts');
return [
'groups' => [
'admin' => [
'admin.*',
'posts.*',
],
'author' => [
'posts.*',
]
],
];
@routes('author')
// routes/web.php
Route::get('/', function () {
return view('welcome');
})->name('home');
Route::get('/login', function () {
return view('login');
})->name('login');
// config/ziggy.php
return [
'skip-route-function' => true
];
js
route('events.venues.show', {event: 1, venue: 2, page: 5, count: 10}) // Returns '/events/1/venues/2?page=5&count=10'
js
Ziggy.defaultParameters = {
//example
locale: "en"
}
php artisan ziggy:generate "resources/foo.js"