feat(company): implement custom company for 'Perusahaan' role

- crud with custom page
- create model and migration for database schema
- custom view
- company relation from User model
This commit is contained in:
Yoga Pangestu 2025-12-04 14:44:46 +07:00
parent bfb92ae794
commit 9aa585d8c9
5 changed files with 399 additions and 0 deletions

View File

@ -0,0 +1,307 @@
<?php
namespace App\Filament\Pages;
use App\Models\Company;
use Asmit\FilamentUpload\Forms\Components\AdvancedFileUpload;
use BackedEnum;
use Filament\Forms\Components\Textarea;
use Filament\Forms\Components\TextInput;
use Filament\Notifications\Notification;
use Filament\Pages\Page;
use Filament\Schemas\Components\Group;
use Filament\Schemas\Components\Section;
use Filament\Schemas\Schema;
use Filament\Support\Icons\Heroicon;
use Illuminate\Support\Facades\Storage;
use UnitEnum;
class CustomCompany extends Page
{
protected string $view = 'filament.pages.company';
protected static ?string $title = 'Perusahaan';
protected static string|BackedEnum|null $navigationIcon = Heroicon::BuildingOffice2;
protected static ?string $navigationLabel = 'Perusahaan';
protected static string|UnitEnum|null $navigationGroup = 'Kelola';
protected static ?string $slug = 'manage/company';
protected static ?string $recordTitleAttribute = 'name';
protected static ?int $navigationSort = 9;
public ?Company $company = null;
public array $data = [];
public function mount(): void
{
$company = auth()->user()->company;
if (! $company) {
return;
}
$this->company = $company;
$this->form->fill($company->toArray());
$documents = [
'director_nik',
'deed_incorporation',
'trade_license',
'tax_id_number',
'taxable_enterprise',
'annual_tax_return',
'domicile_certificate',
'profile',
];
$mediaItems = $company->getMedia('companies');
foreach ($documents as $docType) {
$media = $mediaItems
->where('custom_properties.doc_type', str($docType)->replace('_docs', '')->slug('-'))
->sortByDesc('created_at')
->first();
if ($media) {
$this->data["{$docType}_docs"] = [$media->getPathRelativeToRoot()];
}
}
}
public static function form(Schema $schema): Schema
{
$documents = [
[
'title' => 'Akta Pendirian',
'text_name' => 'deed_incorporation',
'placeholder' => '*****',
'max' => 100,
'max_size' => 1024 * 10,
'file_name' => 'deed_incorporation_docs',
'accept' => ['application/pdf'],
'folder' => 'companies/deed-incorporation/',
],
[
'title' => 'SIUP / NIB',
'text_name' => 'trade_license',
'placeholder' => '*****',
'max' => 100,
'max_size' => 1024 * 10,
'file_name' => 'trade_license_docs',
'accept' => ['application/pdf'],
'folder' => 'companies/trade-license/',
],
[
'title' => 'NPWP',
'text_name' => 'tax_id_number',
'placeholder' => '*****',
'max' => 100,
'max_size' => 1024 * 10,
'file_name' => 'tax_id_number_docs',
'accept' => ['application/pdf'],
'folder' => 'companies/tax-id-number/',
],
[
'title' => 'PKP',
'text_name' => 'taxable_enterprise',
'placeholder' => '*****',
'max' => 100,
'max_size' => 1024 * 10,
'file_name' => 'taxable_enterprise_docs',
'accept' => ['application/pdf'],
'folder' => 'companies/taxable-enterprise/',
],
[
'title' => 'SPT Tahunan',
'text_name' => 'annual_tax_return',
'placeholder' => '*****',
'max' => 100,
'max_size' => 1024 * 10,
'file_name' => 'annual_tax_return_docs',
'accept' => ['application/pdf'],
'folder' => 'companies/annual-tax-return/',
],
[
'title' => 'Suket Domisili',
'text_name' => 'domicile_certificate',
'placeholder' => '*****',
'max' => 100,
'max_size' => 1024 * 10,
'file_name' => 'domicile_certificate_docs',
'accept' => ['application/pdf'],
'folder' => 'companies/domicile-certificate/',
],
[
'title' => 'Profil Perusahaan',
'text_name' => 'profile',
'placeholder' => '*****',
'max' => 100,
'max_size' => 1024 * 10,
'file_name' => 'profile_docs',
'accept' => ['application/pdf'],
'folder' => 'companies/profile/',
],
];
return $schema
->components([
Section::make('Informasi')
->schema([
TextInput::make('name')
->label('Nama')
->placeholder('PT ABC Indonesia Abadi')
->autocomplete(false)
->autofocus()
->required()
->maxLength(100),
TextInput::make('email')
->label('Alamat Surel')
->placeholder('johndoe@gmail.com')
->autocomplete(false)
->required()
->maxLength(254),
Textarea::make('address')
->label('Alamat')
->placeholder('Jl. Kebontoro, Jakarta Pusat')
->autocomplete(false)
->required()
->columnSpanFull(),
TextInput::make('director_name')
->label('Nama Direktur')
->placeholder('John Doe')
->autocomplete(false)
->required()
->maxLength(100)
->columnSpanFull(),
])
->columns(2)
->columnSpan(2),
Group::make()
->schema(
array_merge(
[
Section::make('NIK Direktur')
->schema([
TextInput::make('director_nik')
->hiddenLabel()
->placeholder('32***')
->autocomplete(false)
->required()
->maxLength(16)
->rule('digits:16')
->inputMode('numeric')
->regex('/^[0-9]+$/'),
AdvancedFileUpload::make('director_nik_docs')
->hiddenLabel()
->disk(config('filesystems.default'))
->acceptedFileTypes(['images/*'])
->maxSize(1024 * 3)
->directory('companies/director-nik/'.now()->toDateString()),
]),
],
collect($documents)
->map(
fn ($doc) => Section::make($doc['title'])
->schema([
TextInput::make($doc['text_name'])
->hiddenLabel()
->placeholder($doc['placeholder'])
->autocomplete(false)
->required()
->maxLength($doc['max']),
AdvancedFileUpload::make($doc['file_name'])
->hiddenLabel()
->disk(config('filesystems.default'))
->acceptedFileTypes($doc['accept'])
->maxSize($doc['max_size'])
->directory($doc['folder'].now()->toDateString()),
])
)->toArray()
)
)
->columns(2),
])
->statePath('data');
}
public function save()
{
$data = $this->form->getState();
$company = Company::updateOrCreate([
'id' => $this->company?->id,
], [
'user_id' => auth()->id(),
'name' => $data['name'],
'email' => $data['email'],
'address' => $data['address'],
'director_name' => $data['director_name'],
'director_nik' => $data['director_nik'],
'deed_incorporation' => $data['deed_incorporation'],
'trade_license' => $data['trade_license'],
'tax_id_number' => $data['tax_id_number'],
'taxable_enterprise' => $data['taxable_enterprise'],
'annual_tax_return' => $data['annual_tax_return'],
'domicile_certificate' => $data['domicile_certificate'],
'profile' => $data['profile'],
]);
$this->company = $company;
$documents = [
'director_nik_docs',
'deed_incorporation_docs',
'trade_license_docs',
'tax_id_number_docs',
'taxable_enterprise_docs',
'annual_tax_return_docs',
'domicile_certificate_docs',
'profile_docs',
];
foreach ($documents as $field) {
if (empty($this->data[$field])) {
continue;
}
foreach ((array) $this->data[$field] as $filePath) {
$fullPath = Storage::disk(config('filesystems.default'))->path($filePath);
if (! file_exists($fullPath)) {
continue;
}
$company
->addMediaFromDisk($filePath, config('filesystems.default'))
->preservingOriginal()
->withCustomProperties([
'feature' => 'companies',
'date' => now()->toDateString(),
'doc_type' => str($field)
->replace('_docs', '')
->slug('-'),
])
->toMediaCollection('companies');
}
}
Notification::make()
->title('Informasi perusahaan berhasil diperbarui.')
->success()
->send();
}
}

33
app/Models/Company.php Normal file
View File

@ -0,0 +1,33 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasManyThrough;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Database\Eloquent\SoftDeletes;
use Spatie\MediaLibrary\HasMedia;
use Spatie\MediaLibrary\InteractsWithMedia;
class Company extends Model implements HasMedia
{
use InteractsWithMedia, SoftDeletes;
protected $guarded = ['id'];
public function user(): BelongsTo
{
return $this->belongsTo(User::class);
}
public function parternMedia(): HasOne
{
return $this->hasOne(PartnerMedia::class);
}
public function journalists(): HasManyThrough
{
return $this->hasManyThrough(Journalist::class, PartnerMedia::class);
}
}

View File

@ -39,4 +39,9 @@ protected function withoutDeveloper(Builder $query): void
$q->where('name', 'Developer');
});
}
public function company(): HasOne
{
return $this->hasOne(Company::class);
}
}

View File

@ -0,0 +1,45 @@
<?php
use App\Models\User;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('companies', function (Blueprint $table) {
$table->id();
$table->foreignIdFor(User::class);
$table->string('name', 100);
$table->string('email', 254);
$table->text('address');
$table->string('director_name', 100);
$table->string('director_nik', 16);
$table->string('deed_incorporation', 100);
$table->string('trade_license', 100);
$table->string('tax_id_number', 100);
$table->string('taxable_enterprise', 100);
$table->string('annual_tax_return', 100);
$table->string('domicile_certificate', 100);
$table->string('profile', 100);
$table->date('validated_at')->nullable();
$table->text('rejection_reason')->nullable();
$table->timestamp('created_at')->useCurrent();
$table->timestamp('updated_at')->nullable()->useCurrentOnUpdate();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('companies');
}
};

View File

@ -0,0 +1,9 @@
<x-filament-panels::page>
<form wire:submit="save">
{{ $this->form }}
<div style="margin-top:20px;">
<x-filament::button type="submit">Simpan</x-filament::button>
</div>
</form>
</x-filament-panels::page>