javaabu/imports

Streamline excel data import to your application
1,103
Install
composer require javaabu/imports
Latest Version:v1.6.0
PHP:^8.2
License:MIT
Last Updated:Mar 23, 2026
Links: GitHub  ·  Packagist
Maintainer: dash8x

Imports

Latest Version on Packagist Test Status Code Coverage Badge Total Downloads

Introduction

Streamline excel data import to your application

Documentation

You'll find the documentation on https://docs.javaabu.com/docs/imports.

Find yourself stuck using the package? Found a bug? Do you have general questions or suggestions for improving this package? Feel free to create an issue on GitHub, we'll try to address it as soon as possible.

If you've found a bug regarding security please mail info@javaabu.com instead of using the issue tracker.

Usage

Install the package via composer:

composer require javaabu/imports

Create your controller and use the ImportsData trait

<?php

namespace App\Http\Controllers\Admin;

use App\Http\Controllers\Controller;
use Javaabu\Imports\Traits\ImportsData;

class ImportsController extends Controller
{
    use ImportsData;
}

Register your routes

    Route::get('import', [ImportsController::class, 'index'])->name('imports.index');
    Route::post('import', [ImportsController::class, 'store'])->name('imports.store');

For more customization you can override the methods in ImportsData trait.

Testing

You can run the tests with

./vendor/bin/phpunit

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email info@javaabu.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

javaabu/helpers

Laravel helper functions for use in everywhere on a project

20,982 0
javaabu/schema

Extends the Laravel database schema with convenience methods used by javaabu/gen...

10,691 0
gsferro/livewire-import-easy

Componente Livewire pronto para importação de arquivos de forma easy

37 0
javaabu/settings

File based settings system for Laravel

23,399 0
javaabu/generator-helpers

Helper methods for Laravel generators

10,609 0