242 lines
8.3 KiB
PHP
242 lines
8.3 KiB
PHP
<?php
|
|
|
|
namespace App\Modules\VisaMasterPaymentOrder\Nova\Resources;
|
|
|
|
use App\Models\Branch\Branch;
|
|
use App\Modules\VisaMasterPaymentOrder\Models\VisaMasterPaymentOrder;
|
|
use App\Modules\VisaMasterPaymentOrder\Nova\Resources\Concerns\VisaMasterPaymentOrderFieldsForIndex;
|
|
use App\Nova\Resource;
|
|
use App\Repos\Order\Card\CardOrderRepo;
|
|
use App\Repos\Order\OrderRepo;
|
|
use App\Repos\System\Nova\NovaRepo;
|
|
use App\Repos\System\Settings\Legal\PassportRepo;
|
|
use App\Repos\System\Settings\Location\RegionRepo;
|
|
use Ebess\AdvancedNovaMediaLibrary\Fields\Files;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Str;
|
|
use Laravel\Nova\Fields\Badge;
|
|
use Laravel\Nova\Fields\Hidden;
|
|
use Laravel\Nova\Fields\ID;
|
|
use Laravel\Nova\Fields\Select;
|
|
use Laravel\Nova\Fields\Text;
|
|
use Laravel\Nova\Http\Requests\NovaRequest;
|
|
use Laravel\Nova\Panel;
|
|
use Nurmuhammet\NovaInputmask\NovaInputmask;
|
|
use Outl1ne\NovaSimpleRepeatable\SimpleRepeatable;
|
|
|
|
/**
|
|
* @template TModel of \App\Modules\VisaMasterPaymentOrder\Models\VisaMasterPaymentOrder
|
|
*/
|
|
class NovaVisaMasterPaymentOrder extends Resource
|
|
{
|
|
/**
|
|
* The model the resource corresponds to.
|
|
*
|
|
* @var class-string<\App\Modules\VisaMasterPaymentOrder\Models\VisaMasterPaymentOrder>
|
|
*/
|
|
public static $model = \App\Modules\VisaMasterPaymentOrder\Models\VisaMasterPaymentOrder::class;
|
|
|
|
/**
|
|
* The single value that should be used to represent the resource when being displayed.
|
|
*
|
|
* @var string
|
|
*/
|
|
public static $title = 'unique_id';
|
|
|
|
/**
|
|
* The columns that should be searched.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
public static $search = [
|
|
'unique_id', 'passport_name', 'passport_surname', 'phone',
|
|
];
|
|
|
|
/**
|
|
* Get the displayable label of the resource.
|
|
*/
|
|
public static function label(): string
|
|
{
|
|
return sprintf(
|
|
'%s (%s)',
|
|
__('Visa/Master payments'),
|
|
Str::lower(__('For students'))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the displayable singular label of the resource.
|
|
*/
|
|
public static function singularLabel(): string
|
|
{
|
|
return sprintf(
|
|
'%s (%s)',
|
|
__('Visa/Master payment'),
|
|
Str::lower(__('For students'))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* After resource created
|
|
*
|
|
* @param \Laravel\Nova\Http\Requests\NovaRequest $request
|
|
* @param \Illuminate\Database\Eloquent\Model $model
|
|
*/
|
|
public static function afterCreate(NovaRequest $request, Model $model): void
|
|
{
|
|
$model->update(['unique_id' => CardOrderRepo::fillUniqueId($model)]);
|
|
}
|
|
|
|
/**
|
|
* Get the fields for index.
|
|
*/
|
|
public function fieldsForIndex(): array
|
|
{
|
|
return VisaMasterPaymentOrderFieldsForIndex::make($this);
|
|
}
|
|
|
|
/**
|
|
* Get the fields displayed by the resource.
|
|
*
|
|
* @param \Laravel\Nova\Http\Requests\NovaRequest $request
|
|
* @return array<int, \Laravel\Nova\Fields\FieldElement|\Laravel\Nova\Panel>
|
|
*/
|
|
public function fields(NovaRequest $request): array
|
|
{
|
|
return [
|
|
ID::hidden(),
|
|
|
|
Hidden::make('user_id')
|
|
->default(auth()->id())
|
|
->hideWhenUpdating(),
|
|
|
|
new Panel(__('New :resource', ['resource' => $this->singularLabel()]), [
|
|
Text::make(__('ID'), 'unique_id')
|
|
->exceptOnForms(),
|
|
|
|
Select::make(__('Status'), 'status')
|
|
->displayUsingLabels()
|
|
->searchable()
|
|
->options(OrderRepo::statusValues())
|
|
->default(OrderRepo::defaultStatus())
|
|
->fullWidth()
|
|
->hideFromDetail()
|
|
->rules('required')
|
|
->canSeeWhen('systemUser', $this),
|
|
|
|
Badge::make(__('Status'), 'status')
|
|
->map(OrderRepo::statusClasses())
|
|
->addTypes([
|
|
'primary' => 'dark:bg-gray-900 bg-gray-600 text-white',
|
|
])
|
|
->labels(OrderRepo::statusValues())
|
|
->withIcons()
|
|
->icons(OrderRepo::statusIcons()),
|
|
|
|
Text::make(__('Note'), 'notes')
|
|
->fullWidth()
|
|
->canSeeWhen('systemUser', $this),
|
|
]),
|
|
|
|
new Panel(__('Application type'), [
|
|
Select::make(__('Application type'), 'type')
|
|
->fullWidth()
|
|
->searchable()
|
|
->rules('required')
|
|
->displayUsingLabels()
|
|
->options(VisaMasterPaymentOrder::applicationTypes()),
|
|
]),
|
|
|
|
new Panel(__('Location'), [
|
|
Select::make(__('Region'), 'region')
|
|
->fullWidth()
|
|
->displayUsingLabels()
|
|
->searchable()
|
|
->options(RegionRepo::values())
|
|
->default(RegionRepo::default())
|
|
->rules('required')
|
|
->sortable(),
|
|
|
|
Select::make(__('Branch'), 'branch_id')
|
|
->fullWidth()
|
|
->displayUsingLabels()
|
|
->searchable()
|
|
->dependsOn('region', NovaRepo::dependsOnRegion('region', Branch::class))
|
|
->rules('required')
|
|
->sortable(),
|
|
]),
|
|
|
|
new Panel(__('Personal data'), [
|
|
Text::make(__('Passport name'), 'passport_name')
|
|
->fullWidth()
|
|
->rules('required', 'string', 'max:255'),
|
|
|
|
Text::make(__('Passport surname'), 'passport_surname')
|
|
->fullWidth()
|
|
->rules('required', 'string', 'max:255'),
|
|
|
|
NovaInputmask::make(__('Phone'), 'phone')
|
|
->fullWidth()
|
|
->phonenumber('TM')
|
|
->rules('required', 'max:255')
|
|
->hideFromIndex(),
|
|
|
|
Text::make(__('Email'), 'email')
|
|
->fullWidth()
|
|
->rules('nullable', 'max:255', 'email')
|
|
->hideFromIndex(),
|
|
|
|
Text::make(__('Current Residence'), 'address')
|
|
->fullWidth()
|
|
->rules('required', 'string', 'max:255')
|
|
->hideFromIndex(),
|
|
]),
|
|
|
|
new Panel(__('Payment'), [
|
|
SimpleRepeatable::make(__('Payment sender data'), 'sender_datas', [
|
|
Select::make(__('Passport serie'), 'passport_serie')
|
|
->displayUsingLabels()
|
|
->searchable()
|
|
->options(PassportRepo::values())
|
|
->rules('required')
|
|
->sortable(),
|
|
|
|
NovaInputmask::make(__('Passport number'), 'passport_number')
|
|
->mask('999999')
|
|
->rules('required', 'max:255'),
|
|
|
|
Text::make(
|
|
name: sprintf('%s %s %s', __('Name'), __('Surname'), __('Patronic name')),
|
|
attribute: 'full_name'
|
|
)
|
|
->rules('required', 'max:255'),
|
|
])->minRows(1)->rules('required'),
|
|
|
|
SimpleRepeatable::make('Tölegi kabul edijiniň maglumatlary', 'payment_reciever', [
|
|
Select::make(__('Passport serie'), 'passport_serie')
|
|
->displayUsingLabels()
|
|
->searchable()
|
|
->options(PassportRepo::values())
|
|
->rules('required')
|
|
->sortable(),
|
|
|
|
NovaInputmask::make(__('Passport number'), 'passport_number')
|
|
->mask('999999')
|
|
->rules('required', 'max:255'),
|
|
|
|
Text::make(
|
|
name: sprintf('%s %s %s', __('Name'), __('Surname'), __('Patronic name')),
|
|
attribute: 'full_name'
|
|
),
|
|
])->maxRows(1)->minRows(1)->rules('required'),
|
|
|
|
Files::make('Talap edilýän resminamalar', 'main')
|
|
->conversionOnIndexView('thumb')
|
|
->rules('required')
|
|
->required()
|
|
->hideFromIndex(),
|
|
]),
|
|
];
|
|
}
|
|
}
|