This commit is contained in:
2026-02-03 15:31:29 +05:00
commit 326c677e8d
2800 changed files with 1489388 additions and 0 deletions

View File

@@ -0,0 +1,116 @@
<?php
namespace App\Nova\Resources\CMS\Marketing;
use App\Nova\Resource;
use Illuminate\Http\Request;
use Laravel\Nova\Fields\Boolean;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Fields\Trix;
use Laravel\Nova\Http\Requests\NovaRequest;
class Newsletter extends Resource
{
/**
* The model the resource corresponds to.
*
* @var class-string<\App\Models\Resources\CMS\Marketing\Newsletter>
*/
public static $model = \App\Models\CMS\Marketing\Newsletter::class;
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'subject';
/**
* The columns that should be searched.
*
* @var array
*/
public static $search = [
'id', 'subject',
];
/**
* Get the displayable label of the resource.
*/
public static function label(): string
{
return __('Email Newsletters');
}
/**
* Get the displayable singular label of the resource.
*/
public static function singularLabel(): string
{
return __('Email Newsletter');
}
/**
* Get the fields displayed by the resource.
*
* @return array
*/
public function fields(NovaRequest $request)
{
return [
ID::make()->sortable(),
Text::make(__('Subject'), 'subject')
->rules('required'),
Trix::make(__('Content'), 'content')
->withFiles('public')
->rules('required'),
Boolean::make('sent')
->exceptOnForms()
->default(false),
];
}
/**
* 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,109 @@
<?php
namespace App\Nova\Resources\CMS\Marketing;
use App\Nova\Resource;
use Illuminate\Http\Request;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
class NewsletterUser extends Resource
{
/**
* The model the resource corresponds to.
*
* @var class-string<\App\Models\Resources\CMS\Marketing\NewsletterUser>
*/
public static $model = \App\Models\CMS\Marketing\NewsletterUser::class;
/**
* The single value that should be used to represent the resource when being displayed.
*
* @var string
*/
public static $title = 'email';
/**
* The columns that should be searched.
*
* @var array
*/
public static $search = [
'id', 'email',
];
/**
* Get the displayable label of the resource.
*/
public static function label(): string
{
return __('Email Newsletter').' '.__('subscribed').' '.__('users');
}
/**
* Get the displayable singular label of the resource.
*/
public static function singularLabel(): string
{
return __('User');
}
/**
* Get the fields displayed by the resource.
*
* @return array
*/
public function fields(NovaRequest $request)
{
return [
ID::make()->sortable(),
Text::make(__('Email'), 'email')
->sortable()
->rules('required', 'email', 'max:254')
->creationRules('unique:newsletter_users,email')
->updateRules('unique:newsletter_users,email,{{resourceId}}'),
];
}
/**
* 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 [];
}
}