1. Go to this page and download the library: Download rishadblack/wire-reports 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/ */
rishadblack / wire-reports example snippets
namespace App\Livewire\Reports;
use App\Models\User;
use Illuminate\Database\Eloquent\Builder;
use Rishadblack\WireReports\ReportComponent;
class TestReport extends ReportComponent
{
public function configure(): void
{
$this->setFileName('purchase-report');
}
public function builder(): Builder
{
return Country::query();
}
public function columns(): array
{
return [
Column::make('Serial', 'id')->sortable()->hide(),
Column::make('Name', 'name')->sortable()->searchable(),
Column::make('Phonecode', 'phonecode')->sortable(),
];
}
public function filters(): array
{
return [
Filter::make('Search Name', 'name')->filter(function (Builder $query, string $value) {
$query->where('name', 'like', "%{$value}%");
})->placeholder('Search Country Name'),
Filter::make('Search Supplier', 'phonecode')->searchComponent('contact::search.customers')->filter(function (Builder $query, string $value) {
$query->where('phonecode', 'like', "%{$value}%");
})->placeholder('Search Country Name'),
];
}
}