| Current Path : /home/webg5288/www/laravel_kendal/app/Filament/Widgets/ |
| Current File : /home/webg5288/www/laravel_kendal/app/Filament/Widgets/ImportStockOpnameProgress.php |
<?php
namespace App\Filament\Widgets;
use App\Models\ImportRun;
use Filament\Widgets\Widget;
class ImportStockOpnameProgress extends Widget
{
protected static string $view = 'filament.widgets.import-stock-opname-progress';
protected static ?int $pollingInterval = 2;
public function getRunProperty(): ?ImportRun
{
return ImportRun::where('type', 'stock_opname')->latest()->first();
}
}