aw-studio/fjord-csv

Import/Export CSV-Data of your CRUD-Models

v1.0 2019-10-14 15:00 UTC

This package is auto-updated.

Last update: 2024-04-15 00:55:42 UTC


README

Import/Export CSV-Data of your CRUD-Models

Install

Install the package via composer:

composer require aw-studio/fjord-csv

You have to install the node package via npm:

npm i vendor/aw-studio/fjord-csv

In order to extend your Fjord-application, follow the instructions in the fjord documentation about extending the Fjord Vue application.

Require the package in your app.js file:

import Fjord from "fjord";

require('fjord-csv')

const store = {};

new Fjord({
  store
});

Include the compiled version of your app.js file in your config/fjord.php file

return [
    ...
    'assets' => [
        // Set path to the app.js file.
        'js' => '/path/to/compiled/app.js',
    ],
    ...
];