This commit is contained in:
2025-09-25 03:03:31 +05:00
commit ae480cf2f6
2768 changed files with 1485826 additions and 0 deletions

View File

@@ -0,0 +1,72 @@
<?php
namespace App\Nova\Resources\System\Payments;
use App\Models\System\Settings\Payments\PaymentType as PaymentTypeModel;
use App\Nova\Resource;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
use Trin4ik\NovaSwitcher\NovaSwitcher;
class PaymentType extends Resource
{
/**
* The model the resource corresponds to.
*
* @var class-string<PaymentTypeModel>
*/
public static $model = PaymentTypeModel::class;
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'name';
/**
* The columns that should be searched.
*
* @var array
*/
public static $search = [
'id', 'name',
];
/**
* Get the displayable label of the resource.
*/
public static function label(): string
{
return __('Payment types');
}
/**
* Get the displayable singular label of the resource.
*/
public static function singularLabel(): string
{
return __('Payment type');
}
/**
* Get the fields displayed by the resource.
*/
public function fields(NovaRequest $request): array
{
return [
ID::make()->sortable(),
Text::make(__('Name'), 'name')
->translatable()
->rules('required', 'string', 'max:255'),
Text::make(__('Tax'), 'tax')
->rules('nullable', 'string', 'max:255'),
NovaSwitcher::make(__('Is enabled'), 'is_enabled')
->default(true),
];
}
}

View File

@@ -0,0 +1,92 @@
<?php
namespace App\Nova\Resources\System\Roles;
use App\Nova\Resource;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
class Permission extends Resource
{
/**
* The model the resource corresponds to.
*
* @var class-string<\App\Models\System\Roles\Permission>
*/
public static $model = \App\Models\System\Roles\Permission::class;
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'name';
/**
* The columns that should be searched.
*
* @var array
*/
public static $search = [
'id', 'name',
];
/**
* Get the fields displayed by the resource.
*
* @return array
*/
public function fields(NovaRequest $request)
{
return [
ID::make()->sortable(),
Text::make(__('Name'), 'name')
->rules('required', 'string', 'max:255', 'unique:permissions,name'),
Text::make(__('Guard name'), 'guard_name')
->rules('required', 'string', 'max:255'),
];
}
/**
* Get the cards available for the request.
*
* @return array
*/
public function cards(NovaRequest $request)
{
return [];
}
/**
* Get the filters available for the resource.
*
* @return array
*/
public function filters(NovaRequest $request)
{
return [];
}
/**
* Get the lenses available for the resource.
*
* @return array
*/
public function lenses(NovaRequest $request)
{
return [];
}
/**
* Get the actions available for the resource.
*
* @return array
*/
public function actions(NovaRequest $request)
{
return [];
}
}

View File

@@ -0,0 +1,108 @@
<?php
namespace App\Nova\Resources\System\Roles;
use App\Nova\Resource;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
class Role extends Resource
{
/**
* The model the resource corresponds to.
*
* @var class-string<\App\Models\Resources\System\Roles\Role>
*/
public static $model = \App\Models\System\Roles\Role::class;
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'name';
/**
* The columns that should be searched.
*
* @var array
*/
public static $search = [
'id', 'name',
];
/**
* Get the displayable label of the resource.
*/
public static function label(): string
{
return __('Roles');
}
/**
* Get the displayable singular label of the resource.
*/
public static function singularLabel(): string
{
return __('Role');
}
/**
* Get the fields displayed by the resource.
*
* @return array
*/
public function fields(NovaRequest $request)
{
return [
ID::make()->sortable(),
Text::make(__('Name'), 'name')
->rules('required', 'string', 'max:255', 'unique:roles,name'),
Text::make(__('Guard name'), 'guard_name')
->rules('required', 'string', 'max:255'),
];
}
/**
* Get the cards available for the request.
*
* @return array
*/
public function cards(NovaRequest $request)
{
return [];
}
/**
* Get the filters available for the resource.
*
* @return array
*/
public function filters(NovaRequest $request)
{
return [];
}
/**
* Get the lenses available for the resource.
*
* @return array
*/
public function lenses(NovaRequest $request)
{
return [];
}
/**
* Get the actions available for the resource.
*
* @return array
*/
public function actions(NovaRequest $request)
{
return [];
}
}

View File

@@ -0,0 +1,41 @@
<?php
namespace App\Nova\Resources\System\Settings\Location\Province\Filters;
use App\Models\System\Settings\Location\Region;
use Laravel\Nova\Filters\Filter;
use Laravel\Nova\Http\Requests\NovaRequest;
class RegionFilter extends Filter
{
/**
* The filter's component.
*
* @var string
*/
public $component = 'select-filter';
/**
* Apply the filter to the given query.
*
* @param \Illuminate\Database\Eloquent\Builder $query
* @param mixed $value
* @return \Illuminate\Database\Eloquent\Builder
*/
public function apply(NovaRequest $request, $query, $value)
{
return $value
? $query->where('region', $value)
: $query;
}
/**
* Get the filter's available options.
*
* @return array
*/
public function options(NovaRequest $request)
{
return array_flip(Region::values());
}
}

View File

@@ -0,0 +1,86 @@
<?php
namespace App\Nova\Resources\System\Settings\Location\Province;
use App\Models\System\Settings\Location\Province as ProvinceModel;
use App\Models\System\Settings\Location\Region;
use App\Nova\Resource;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Select;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
class Province extends Resource
{
/**
* The model the resource corresponds to.
*
* @var class-string<\App\Models\Resources\System\Settings\Location\Province\Province>
*/
public static $model = ProvinceModel::class;
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'name';
/**
* The columns that should be searched.
*
* @var array
*/
public static $search = [
'id', 'name',
];
/**
* Get the displayable label of the resource.
*/
public static function label(): string
{
return __('Provinces');
}
/**
* Get the displayable singular label of the resource.
*/
public static function singularLabel(): string
{
return __('Province');
}
/**
* Get the fields displayed by the resource.
*/
public function fields(NovaRequest $request): array
{
return [
ID::make()->sortable(),
Select::make(__('Region'), 'region')
->displayUsingLabels()
->searchable()
->options(Region::values())
->default(Region::AG)
->rules('required')
->sortable(),
Text::make(__('Name'), 'name')
->rules('required', 'string', 'max:255')
->translatable()
->sortable(),
];
}
/**
* Get the filters available for the resource.
*/
public function filters(NovaRequest $request): array
{
return [
new Filters\RegionFilter(),
];
}
}

View File

@@ -0,0 +1,122 @@
<?php
namespace App\Nova\Resources\System\VersionManagement;
use App\Models\System\Settings\OS;
use App\Models\System\VersionManagement\AppVersion as AppVersionModel;
use App\Nova\Resource;
use Laravel\Nova\Fields\Boolean;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Select;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
class AppVersion extends Resource
{
/**
* The model the resource corresponds to.
*
* @var class-string<AppVersionModel>
*/
public static $model = AppVersionModel::class;
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'version';
/**
* The columns that should be searched.
*
* @var array
*/
public static $search = [
'version',
];
/**
* Get the displayable label of the resource.
*/
public static function label(): string
{
return __('App Versions');
}
/**
* Get the displayable singular label of the resource.
*/
public static function singularLabel(): string
{
return __('App Version');
}
/**
* Get the fields displayed by the resource.
*/
public function fields(NovaRequest $request): array
{
return [
ID::make()->sortable(),
Text::make(__('Version'), 'version')
->rules('required', 'string', 'max:255')
->sortable(),
Select::make(__('Operating System'), 'os')
->displayUsingLabels()
->searchable()
->options(OS::types())
->rules('required', 'string', 'max:255')
->sortable(),
Boolean::make(__('Important'), 'important')
->default(false)
->rules('required')
->sortable(),
Text::make(__('Notes'), 'notes'),
];
}
/**
* Get the cards available for the request.
*
* @return array
*/
public function cards(NovaRequest $request)
{
return [];
}
/**
* Get the filters available for the resource.
*
* @return array
*/
public function filters(NovaRequest $request)
{
return [];
}
/**
* Get the lenses available for the resource.
*
* @return array
*/
public function lenses(NovaRequest $request)
{
return [];
}
/**
* Get the actions available for the resource.
*
* @return array
*/
public function actions(NovaRequest $request)
{
return [];
}
}