skeleton for import export

This commit is contained in:
hackerESQ
2024-08-07 19:00:56 -05:00
parent 991d484152
commit 838f093ae5
3 changed files with 51 additions and 6 deletions
@@ -0,0 +1,26 @@
<?php
use Livewire\Volt\Component;
use Mary\Traits\Toast;
new class extends Component {
use Toast;
// props
// methods
public function mount()
{
//
}
}; ?>
<div>
<x-button type="submit">
{{ __('Download Export') }}
</x-button>
</div>
@@ -0,0 +1,21 @@
<?php
use Livewire\Volt\Component;
use Mary\Traits\Toast;
new class extends Component {
use Toast;
// props
public $file;
// methods
public function mount()
{
//
}
}; ?>
<x-file wire:model="file" label="Select a file" hint="" accept="application/pdf" required />