PHP code example of wyxos / laravel-resources
1. Go to this page and download the library: Download wyxos/laravel-resources 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/ */
wyxos / laravel-resources example snippets
// Create a route instance
php artisan make:route StoreUser
// Output
app/Routes/StoreUser.php
// Usage
Route::post('/users/store', StoreUser::class)
// Create a resource route instance
php artisan make:route User/Store --resource
// Output
app/Resources/User/Store.php
// Usage
route('resource', ['user', 'store'])