tecdynamics / datasynchronize
Make site ready in few steps
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- maatwebsite/excel: ^3.1
- spatie/simple-excel: ^3.6
- tecdynamics/platform: *@dev
This package is auto-updated.
Last update: 2024-10-30 10:59:40 UTC
README
Usage
Exporter
There are two ways to create an exporter.
Create an exporter using the command
You can use the php artisan datasynchronize:make:exporter
command to create an exporter.
php artisan datasynchronize:make:exporter PostExporter
Manually create an exporter
This is how an exporter should look like, below is an example of a PostExporter
class.
<?php namespace Tec\Blog\Exporters; use Tec\Blog\Models\Post; use Tec\DataSynchronize\Exporter\ExportColumn; use Tec\DataSynchronize\Exporter\Exporter; use Illuminate\Support\Collection; class PostExporter extends Exporter { public function label(): string { return 'Posts'; } public function columns(): array { return [ ExportColumn::make('name'), ExportColumn::make('description'), ExportColumn::make('created_at'), ]; } public function collection(): Collection { return Post::all(); } }
This is how to use the exporter in a controller.
<?php namespace Tec\Blog\Http\Controllers; use Tec\DataSynchronize\Exporter\Exporter; use Tec\DataSynchronize\Http\Controllers\ExportController; use Tec\Blog\Exporters\PostExporter; class ExportPostController extends ExportController { protected function getExporter(): Exporter { return PostExporter::make(); } }
And then register the route in your routes file.
use Tec\Base\Facades\AdminHelper; use Illuminate\Support\Facades\Route; use Tec\Blog\Http\Controllers\ExportPostController; AdminHelper::registerRoutes(function () { Route::prefix('tools/datasynchronize')->name('tools.datasynchronize.')->group(function () { Route::group(['prefix' => 'export/posts', 'as' => 'export.posts.', 'permission' => 'posts.export'], function () { Route::get('/', [ExportPostController::class, 'index'])->name('index'); Route::post('/', [ExportPostController::class, 'store'])->name('store'); }); }); });
Each exporter route should have a permission to access it. You can use the permission
key in the route group to define
the permission.
In above route definition, the permission is posts.export
key and it parent is tools.datasynchronize
. You can
define the permission in the permissions.php
of your plugin.
return [ [ 'name' => 'Export Posts', 'flag' => 'posts.export', 'parent_flag' => 'tools.datasynchronize', ], ];
Now you can navigate to http://your-domain/tools/datasynchronize/export/posts
to export posts.
Add exporter to Export/Import Data panel section
To add the exporter to the Export/Import Data panel section, you can use the beforeRendering
method of
the PanelSectionManager
class to register the exporter into the panel section.
use Tec\Base\Facades\PanelSectionManager; use Tec\Base\PanelSections\PanelSectionItem; use Tec\DataSynchronize\PanelSections\ExportPanelSection; public function boot(): void { // ... PanelSectionManager::setGroupId('datasynchronize')->beforeRendering(function () { PanelSectionManager::default() ->registerItem( ExportPanelSection::class, fn () => PanelSectionItem::make('posts') ->setTitle('Posts') ->withDescription('Export post data to CSV or Excel file.') ->withPriority(120) ->withRoute('tools.datasynchronize.export.posts.index') ->withPermission('posts.export') ); }); // ... }
You can see the exporter in the Export/Import Data panel section.