PHP code example of viralsbackpack / backpackexcel
1. Go to this page and download the library: Download viralsbackpack/backpackexcel 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/ */
viralsbackpack / backpackexcel example snippets
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Backpack\CRUD\CrudTrait;
use ViralsLaravel\ImportRelationExcel\Traits\ViralsRelationshipMethod;// <------------------------------- this one
class Tag extends Model
{
use CrudTrait;
use ViralsRelationshipMethod; // <------------------------------- this one
/*
|--------------------------------------------------------------------------
| GLOBAL VARIABLES
|--------------------------------------------------------------------------
*/
protected $table = 'tags';
protected $fillable = ['name'];
}
use App\Http\Requests\TagRequest;
class Tag extends Model
{
public $requestExcel = TagRequest::class;
}