PHP code example of crmdesenvolvimentos / modules-inertia
1. Go to this page and download the library: Download crmdesenvolvimentos/modules-inertia 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/ */
crmdesenvolvimentos / modules-inertia example snippets
'Pages/Index' => 'Resources/Pages/Index.vue',
//...
'source' => 'Resources/Pages',
public function some_method()
{
return Inertia::module('module_name::file_name');
//
return Inertia::module('module_name::file_name', ['data'=>'some data']);
//
return Inertia::module('module_name::directory_name.file_name', ['data'=>'some data']);
}
php artisan vendor:publish --provider="Crmdesenvolvimentos\ModulesInertia\ModulesInertiaServiceProvider"