Commit b8bd627e by M. Faisal Setiyawan

feat (api) : initialize api project.

parents
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false
[*.{yml,yaml}]
indent_size = 2
[docker-compose.yml]
indent_size = 4
* text=auto
*.blade.php diff=html
*.css diff=css
*.html diff=html
*.md diff=markdown
*.php diff=php
/.github export-ignore
CHANGELOG.md export-ignore
/node_modules
/public/hot
/public/storage
/storage/*.key
/vendor
.env
.env.backup
.phpunit.result.cache
docker-compose.override.yml
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
/.idea
/.vscode
{
"name": "Lv GraphQL Schema",
"schemaPath": "schema.graphql",
"extensions": {
"endpoints": {
"Default GraphQL Endpoint": {
"url": "http://localhost:8080/graphql",
"headers": {
"user-agent": "JS GraphQL"
},
"introspect": false
}
}
}
}
\ No newline at end of file
php:
preset: laravel
version: 8
disabled:
- no_unused_imports
finder:
not-name:
- index.php
js:
finder:
not-name:
- webpack.mix.js
css: true
<p align="center"><a href="https://laravel.com" target="_blank"><img src="https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg" width="400"></a></p>
<p align="center">
<a href="https://travis-ci.org/laravel/framework"><img src="https://travis-ci.org/laravel/framework.svg" alt="Build Status"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/dt/laravel/framework" alt="Total Downloads"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/v/laravel/framework" alt="Latest Stable Version"></a>
<a href="https://packagist.org/packages/laravel/framework"><img src="https://img.shields.io/packagist/l/laravel/framework" alt="License"></a>
</p>
## About Laravel
Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as:
- [Simple, fast routing engine](https://laravel.com/docs/routing).
- [Powerful dependency injection container](https://laravel.com/docs/container).
- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage.
- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent).
- Database agnostic [schema migrations](https://laravel.com/docs/migrations).
- [Robust background job processing](https://laravel.com/docs/queues).
- [Real-time event broadcasting](https://laravel.com/docs/broadcasting).
Laravel is accessible, powerful, and provides tools required for large, robust applications.
## Learning Laravel
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 2000 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
## Laravel Sponsors
We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the Laravel [Patreon page](https://patreon.com/taylorotwell).
### Premium Partners
- **[Vehikl](https://vehikl.com/)**
- **[Tighten Co.](https://tighten.co)**
- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)**
- **[64 Robots](https://64robots.com)**
- **[Cubet Techno Labs](https://cubettech.com)**
- **[Cyber-Duck](https://cyber-duck.co.uk)**
- **[Many](https://www.many.co.uk)**
- **[Webdock, Fast VPS Hosting](https://www.webdock.io/en)**
- **[DevSquad](https://devsquad.com)**
- **[Curotec](https://www.curotec.com/services/technologies/laravel/)**
- **[OP.GG](https://op.gg)**
- **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)**
- **[Lendio](https://lendio.com)**
## Contributing
Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions).
## Code of Conduct
In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct).
## Security Vulnerabilities
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed.
## License
The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
<?php
# File generated by "php artisan lighthouse:ide-helper".
# Do not edit this file directly.
# This file should be ignored by git as it can be autogenerated.
namespace Illuminate\Foundation\Testing {
class TestResponse
{
/**
* Asserts that the response contains an error from a given category.
*
* @param string $category the name of the expected error category
*
* @return $this
*/
public function assertGraphQLErrorCategory(string $category): self
{
return $this;
}
/**
* Assert that the returned result contains exactly the given validation keys.
*
* @param array<string> $keys the validation keys the result should have
*
* @return $this
*/
public function assertGraphQLValidationKeys(array $keys): self
{
return $this;
}
/**
* Assert that a given validation error is present in the response.
*
* @param string $key the validation key that should be present
* @param string $message the expected validation message
*
* @return $this
*/
public function assertGraphQLValidationError(string $key, string $message): self
{
return $this;
}
/**
* Assert that no validation errors are present in the response.
*
* @return $this
*/
public function assertGraphQLValidationPasses(): self
{
return $this;
}
}
}
namespace Illuminate\Testing {
class TestResponse
{
/**
* Assert the response contains an error with a matching message.
*
* @param \Throwable $error the expected error
*
* @return $this
*/
public function assertGraphQLError(\Throwable $error): self
{
return $this;
}
/**
* Assert the response contains an error with the given message.
*
* @param string $message the expected error message
*
* @return $this
*/
public function assertGraphQLErrorMessage(string $message): self
{
return $this;
}
/**
* Assert the response contains no errors.
*
* @return $this
*/
public function assertGraphQLErrorFree(): self
{
return $this;
}
/**
* Assert the response contains an error from the given category.
*
* @param string $category the name of the expected error category
*
* @return $this
*/
public function assertGraphQLErrorCategory(string $category): self
{
return $this;
}
/**
* Assert the returned result contains exactly the given validation keys.
*
* @param array<string> $keys the validation keys the result should have
*
* @return $this
*/
public function assertGraphQLValidationKeys(array $keys): self
{
return $this;
}
/**
* Assert a given validation error is present in the response.
*
* @param string $key the validation key that should be present
* @param string $message the expected validation message
*
* @return $this
*/
public function assertGraphQLValidationError(string $key, string $message): self
{
return $this;
}
/**
* Assert no validation errors are present in the response.
*
* @return $this
*/
public function assertGraphQLValidationPasses(): self
{
return $this;
}
}
}
namespace GraphQL\Type\Definition {
/**
* @property \Nuwave\Lighthouse\Execution\Arguments\ArgumentSet $argumentSet We monkey patch this onto here to pass it down the resolver chain.
*/
class ResolveInfo
{
}
}
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* Define the application's command schedule.
*
* @param \Illuminate\Console\Scheduling\Schedule $schedule
* @return void
*/
protected function schedule(Schedule $schedule)
{
// $schedule->command('inspire')->hourly();
}
/**
* Register the commands for the application.
*
* @return void
*/
protected function commands()
{
$this->load(__DIR__.'/Commands');
require base_path('routes/console.php');
}
}
<?php
namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not reported.
*
* @var array<int, class-string<Throwable>>
*/
protected $dontReport = [
//
];
/**
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array<int, string>
*/
protected $dontFlash = [
'current_password',
'password',
'password_confirmation',
];
/**
* Register the exception handling callbacks for the application.
*
* @return void
*/
public function register()
{
$this->reportable(function (Throwable $e) {
//
});
}
}
<?php
namespace App\GraphQL\Directives;
use Closure;
use GraphQL\Type\Definition\ResolveInfo;
use Nuwave\Lighthouse\Exceptions\DefinitionException;
use Nuwave\Lighthouse\Schema\Directives\BaseDirective;
use Nuwave\Lighthouse\Schema\Values\FieldValue;
use Nuwave\Lighthouse\Support\Contracts\FieldMiddleware;
use Nuwave\Lighthouse\Support\Contracts\GraphQLContext;
/**
* Class CanAccessDirective
* @package App\GraphQL\Directions
*/
class CanAccessDirective extends BaseDirective implements FieldMiddleware
{
/**
* Function definition.
*
* @return string
*/
public static function definition(): string
{
return /** @lang GraphQL */ "
directive @canAccess(
requiredRoles: [String!]
) on FIELD_DEFINITION | OBJECT";
}
/**
* Function handle field.
*
* @param FieldValue $fieldValue
* @param Closure $next
* @return FieldValue
*/
public function handleField(FieldValue $fieldValue, Closure $next): FieldValue
{
$originalResolver = $fieldValue->getResolver();
return $next(
$fieldValue->setResolver(
function ($root, array $args, GraphQLContext $context, ResolveInfo $resolveInfo)
use ($originalResolver) {
$requiredRole = $this->directiveArgValue('requiredRole');
if ($requiredRole === null) {
throw new DefinitionException(
"Missing argument 'requiredRole' for directive '@canAccess'."
);
}
$user = $context->user();
if ($user === null or array_key_exists($user->role()->ur_name, $requiredRole) === false) {
return null;
}
return $originalResolver($root, $args, $context, $resolveInfo);
}
)
);
}
}
\ No newline at end of file
<?php
namespace App\GraphQL\Mutations;
use App\Models\User;
use Error;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Hash;
use Illuminate\Validation\ValidationException;
/**
* Class Login
* @package App\GraphQL\Mutations
*/
class Login
{
/**
* Function invoke login.
*
* @param $_
* @param array $args
* @return mixed
* @throws ValidationException
*/
public function __invoke($_, array $args)
{
$user = User::query()->where('us_email', $args['email'])->first();
$device = request()->header('User-Agent');
if ($user === null or Hash::check($args['password'], $user->us_password) === false) {
throw ValidationException::withMessages([
'email' => ['The provided credentials are incorrect.'],
]);
}
return $user->createToken($device)->plainTextToken;
}
}
<?php
namespace App\Http\Controllers;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Routing\Controller as BaseController;
class Controller extends BaseController
{
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
}
<?php
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
/**
* The application's global HTTP middleware stack.
*
* These middleware are run during every request to your application.
*
* @var array<int, class-string|string>
*/
protected $middleware = [
// \App\Http\Middleware\TrustHosts::class,
\App\Http\Middleware\TrustProxies::class,
\Illuminate\Http\Middleware\HandleCors::class,
\App\Http\Middleware\PreventRequestsDuringMaintenance::class,
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
\App\Http\Middleware\TrimStrings::class,
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
];
/**
* The application's route middleware groups.
*
* @var array<string, array<int, class-string|string>>
*/
protected $middlewareGroups = [
'web' => [
\App\Http\Middleware\EncryptCookies::class,
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
\Illuminate\Session\Middleware\StartSession::class,
// \Illuminate\Session\Middleware\AuthenticateSession::class,
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
\App\Http\Middleware\VerifyCsrfToken::class,
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],
'api' => [
// \Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class,
'throttle:api',
\Illuminate\Routing\Middleware\SubstituteBindings::class,
],
];
/**
* The application's route middleware.
*
* These middleware may be assigned to groups or used individually.
*
* @var array<string, class-string|string>
*/
protected $routeMiddleware = [
'auth' => \App\Http\Middleware\Authenticate::class,
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
'can' => \Illuminate\Auth\Middleware\Authorize::class,
'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class,
'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
];
}
<?php
namespace App\Http\Middleware;
use Illuminate\Auth\Middleware\Authenticate as Middleware;
class Authenticate extends Middleware
{
/**
* Get the path the user should be redirected to when they are not authenticated.
*
* @param \Illuminate\Http\Request $request
* @return string|null
*/
protected function redirectTo($request)
{
if (! $request->expectsJson()) {
return route('login');
}
}
}
<?php
namespace App\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
class EncryptCookies extends Middleware
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array<int, string>
*/
protected $except = [
//
];
}
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance as Middleware;
class PreventRequestsDuringMaintenance extends Middleware
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array<int, string>
*/
protected $except = [
//
];
}
<?php
namespace App\Http\Middleware;
use App\Providers\RouteServiceProvider;
use Closure;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
class RedirectIfAuthenticated
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse) $next
* @param string|null ...$guards
* @return \Illuminate\Http\Response|\Illuminate\Http\RedirectResponse
*/
public function handle(Request $request, Closure $next, ...$guards)
{
$guards = empty($guards) ? [null] : $guards;
foreach ($guards as $guard) {
if (Auth::guard($guard)->check()) {
return redirect(RouteServiceProvider::HOME);
}
}
return $next($request);
}
}
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
class TrimStrings extends Middleware
{
/**
* The names of the attributes that should not be trimmed.
*
* @var array<int, string>
*/
protected $except = [
'current_password',
'password',
'password_confirmation',
];
}
<?php
namespace App\Http\Middleware;
use Illuminate\Http\Middleware\TrustHosts as Middleware;
class TrustHosts extends Middleware
{
/**
* Get the host patterns that should be trusted.
*
* @return array<int, string|null>
*/
public function hosts()
{
return [
$this->allSubdomainsOfApplicationUrl(),
];
}
}
<?php
namespace App\Http\Middleware;
use Illuminate\Http\Middleware\TrustProxies as Middleware;
use Illuminate\Http\Request;
class TrustProxies extends Middleware
{
/**
* The trusted proxies for this application.
*
* @var array<int, string>|string|null
*/
protected $proxies;
/**
* The headers that should be used to detect proxies.
*
* @var int
*/
protected $headers =
Request::HEADER_X_FORWARDED_FOR |
Request::HEADER_X_FORWARDED_HOST |
Request::HEADER_X_FORWARDED_PORT |
Request::HEADER_X_FORWARDED_PROTO |
Request::HEADER_X_FORWARDED_AWS_ELB;
}
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
class VerifyCsrfToken extends Middleware
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array<int, string>
*/
protected $except = [
//
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class AnalysisAttributes extends Model
{
use ScopeModels, SoftDeletes;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'aat_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'aat_updated_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const DELETED_AT = 'aat_deleted_on';
/**
* @var string
*/
public string $prefix = 'aat';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'analysis_attributes';
/**
* Set the primary key of the model.
*
* @var string
*/
protected $primaryKey = 'aat_id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'aat_id',
'aat_attribute',
'aat_active',
'aat_created_on',
'aat_created_by',
'aat_updated_on',
'aat_updated_by',
'aat_deleted_on',
'aat_deleted_by'
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasOne;
/**
* Class BasketSize
* @package App\Models
*/
class BasketSize extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'bs_created_on';
/**
* The name of the "created at" column.
*
* @var string
*/
const UPDATED_AT = 'bs_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'bs';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'basket_size';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'bs_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'bs_bsg_id',
'bs_ly_id',
'bs_period',
'bs_spending',
'bs_visit',
'bs_active',
'bs_created_on',
'bs_created_by',
'bs_updated_on',
'bs_updated_by',
'bs_deleted_on',
'bs_deleted_by',
];
/**
* Function set relation users model.
*
* @return BelongsTo
*/
public function layer()
{
return $this->belongsTo(Layers::class, 'bs_ly_id', 'ly_id');
}
/**
* Function set relation users model.
*
* @return HasOne
*/
public function basketSizeGroup()
{
return $this->hasOne(group::class, 'bs_bsg_id', 'bsg_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Class BasketSizeGroup
* @package App\Models
*/
class BasketSizeGroup extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'bsg_created_on';
/**
* The name of the "created at" column.
*
* @var string
*/
const UPDATED_AT = 'bsg_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'bsg';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'basket_size_group';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'bsg_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'bsg_name',
'bsg_active',
'bsg_grp_id',
'bsg_created_on',
'bsg_created_by',
'bsg_update_on',
'bsg_update_by',
'bsg_deleted_on',
'bsg_deleted_by',
];
/**
* Function set basket size users model.
*
* @return BelongsTo
*/
public function basketSize()
{
return $this->belongsTo(size::class, 'bs_bsg_id', 'bsg_id');
}
/**
* Function set group users model.
*
* @return BelongsTo
*/
public function group()
{
return $this->belongsTo(Group::class, 'bsg_grp_id', 'grp_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
/**
* Class Cannibalization
* @package App\Models
*/
class Cannibalization extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'cn_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'cn_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'cn';
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
public $timestamps = false;
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'cannibalization';
/**
* Set the primary key of the model.
*
* @var string
*/
protected $primaryKey = 'cn_id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'cn_id',
'cn_name',
'cn_group_id',
'cn_aat_id',
'cn_active',
'cn_created_on',
'cn_created_by',
'cn_updated_on',
'cn_updated_by',
'cn_deleted_on',
'cn_deleted_by'
];
/**
* Function set relation users model.
*
* @return BelongsTo
*/
public function group()
{
return $this->belongsTo(Group::class, 'grp_id', 'cn_group_id');
}
/**
* Function set relation users model.
*
* @return HasMany
*/
public function cannibalization()
{
return $this->hasMany(Cannibalization::class, 'cn_group_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Class CannibalizationAnalysis
* @package App\Models
*/
class CannibalizationAnalysis extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'cna';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'cna_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'cna_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'cannibalization_analysis';
/**
* Set the primary key of the model.
*
* @var string
*/
protected $primaryKey = 'cna_id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'cn_id',
'cna_name',
'cna_cn_id',
'cna_segmentation',
'cna_start_distance',
'cna_end_distance',
'cna_active',
'cna_created_on',
'cna_created_by',
'cna_updated_on',
'cna_updated_by',
'cna_deleted_on',
'cna_deleted_by'
];
/**
* Function set relation cannibalization model.
*
* @return BelongsTo
*/
public function cannibalization()
{
return $this->belongsTo(Cannibalization::class, 'cn_id', 'cna_cn_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class CannibalizationCatchmentPolygon extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'ccp_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'ccp_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'ccp';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'cannibalization_catchment_polygon';
/**
* Set the primary key of the model.
*
* @var string
*/
protected $primaryKey = 'ccp_id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'ccp_id',
'ccp_cnp_id',
'ccp_catchment',
'ccp_active',
'ccp_created_on',
'ccp_created_by',
'ccp_updated_on',
'ccp_updated_by',
'ccp_deleted_on',
'ccp_deleted_by'
];
/**
* Function set relation cannibalization polygon model.
*
* @return BelongsTo
*/
public function cannibalizationPolygon()
{
return $this->belongsTo(CannibalizationPolygon::class, 'ccp_cnp_id', 'cnp_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Class CannibalizationCatchmentPolygonVillage
* @package App\Models
*/
class CannibalizationCatchmentPolygonVillage extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'ccv_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'ccv_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'ccv';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'cannibalization_catchment_polygon_village';
/**
* Set the primary key of the model.
*
* @var string
*/
protected $primaryKey = 'ccv_id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'ccv_id',
'ccv_cnp_id',
'ccv_catchment',
'ccv_active',
'ccv_created_on',
'ccv_created_by',
'ccv_updated_on',
'ccv_updated_by',
'ccv_deleted_on',
'ccv_deleted_by'
];
/**
* Function set relation cannibalization polygon model.
*
* @return BelongsTo
*/
public function cannibalizationPolygon()
{
return $this->belongsTo(CannibalizationPolygon::class, 'ccv_cnp_id', 'cnp_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
/**
* Class CannibalizationPolygon
* @package App\Models
*/
class CannibalizationPolygon extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'cnp_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'cnp_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'cnp';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'cannibalization_polygon';
/**
* Set the primary key of the model.
*
* @var string
*/
protected $primaryKey = 'cnp_id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'cnp_id',
'cnp_name',
'cnp_cna_id',
'cnp_cpt_id',
'cnp_st_id',
'cnp_alias',
'cnp_coordinates',
'cnp_sr',
'cnp_size',
'cnp_red',
'cnp_green',
'cnp_blue',
'cnp_lost_area',
'cnp_active',
'cnp_created_on',
'cnp_created_by',
'cnp_updated_on',
'cnp_updated_by',
'cnp_deleted_on',
'cnp_deleted_by'
];
/**
* Function set relation cannibalization polygon model.
*
* @return HasMany
*/
public function cannibalizationCatchmentPolygon()
{
return $this->hasMany(CannibalizationCatchmentPolygon::class, 'ccp_cnp_id');
}
/**
* Function set relation cannibalization polygon model.
*
* @return HasMany
*/
public function cannibalizationCatchmentPolygonVillage()
{
return $this->hasMany(CannibalizationCatchmentPolygonVillage::class, 'ccv_cnp_id');
}
/**
* Function set relation cannibalization polygon model.
*
* @return BelongsTo
*/
public function cannibalizationAnalysis()
{
return $this->belongsTo(CannibalizationAnalysis::class, 'cnp_cna_id', 'cna_id');
}
/**
* Function set relation cannibalization polygon type model.
*
* @return BelongsTo
*/
public function cannibalizationPolygonType()
{
return $this->belongsTo(type::class, 'cnp_cpt_id', 'cpt_id');
}
/**
* Function set relation cannibalization polygon type model.
*
* @return BelongsTo
*/
public function cannibalizationSites()
{
return $this->belongsTo(sites::class, 'cnp_st_id', 'cns_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
/**
* Class CannibalizationPolygonType
* @package App\Models
*/
class CannibalizationPolygonType extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'cpt_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'cpt_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'cpt';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'cannibalization_polygon_type';
/**
* Set the primary key of the model.
*
* @var string
*/
protected $primaryKey = 'cpt_id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'cpt_id',
'cpt_name',
'cpt_active',
'cpt_created_on',
'cpt_created_by',
'cpt_updated_on',
'cpt_updated_by',
'cpt_deleted_on',
'cpt_deleted_by'
];
/**
* Function set relation cannibalization polygon model.
*
* @return HasMany
*/
public function cannibalizationPolygon()
{
return $this->hasMany(CannibalizationPolygon::class, 'cnp_cpt_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
/**
* Class CannibalizationSites
* @package App\Models
*/
class CannibalizationSites extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'cns_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'cns_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'cns';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'cannibalization_sites';
/**
* Set the primary key of the model.
*
* @var string
*/
protected $primaryKey = 'cns_id';
/**
* The attributes that are mass assignable.
*
* @var array $fillable
*/
protected $fillable = [
'cns_id',
'cns_cn_id',
'cns_st_id',
'cns_alias',
'cns_active',
'cns_created_on',
'cns_created_by',
'cns_updated_on',
'cns_updated_by',
'cns_deleted_on',
'cns_deleted_by'
];
/**
* Function set relation sites model.
*
* @return BelongsTo
*/
public function sites()
{
return $this->belongsTo(Sites::class, 'cns_st_id', 'st_id');
}
/**
* Function set relation sites model.
*
* @return HasMany
*/
public function cannibalization()
{
return $this->hasMany(Cannibalization::class, 'cns_cn_id');
}
/**
* Function set relation sites model.
*
* @return HasMany
*/
public function cannibalizationPolygon()
{
return $this->hasMany(CannibalizationPolygon::class, 'cnp_st_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasOne;
/**
* Class ConfigurationSites
*
* @package App\Models
*/
class ConfigurationSites extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'sacf_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'sacf_updated_on';
/**
* @var string
*/
public string $prefix = 'sacf';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'sites_analysis_configuration';
/**
* The primary key for the model.
*
* @var string $primaryKey
*/
protected $primaryKey = 'sacf_id';
/**
* @var array $fillable
*/
protected $fillable = [
'sacf_layers_id',
'sacf_penetration',
'sacf_sa_code',
'sacf_basket_size_group_id',
'sacf_is_template',
'sacf_created_on',
'sacf_created_by',
'sacf_updated_on',
'sacf_updated_by',
'sacf_deleted_on',
'sacf_deleted_by',
];
/**
* Function set relation basket size group model.
*
* @return HasOne
*/
public function basketSizeGroup()
{
return $this->hasOne(group::class, 'sacf_basket_size_group_id', 'bsg_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Class CustomCategory
* @package App\Models
*/
class CustomCategory extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'cc_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'cc_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'cc';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'custom_category';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'cc_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'cc_name',
'cc_parent_id',
'cc_grp_id',
'cc_active',
'cc_created_on',
'cc_created_by',
'cc_updated_on',
'cc_updated_by',
'cc_deleted_on',
'cc_deleted_by',
];
/**
* Function set relation sites model.
*
* @return BelongsTo
*/
public function group()
{
return $this->belongsTo(Group::class, 'cc_grp_id', 'grp_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class CustomLayer
* @package App\Models
*/
class CustomLayer extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'cl';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'cl_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'cl_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'custom_layer';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'cl_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'cl_name',
'cl_lt_id',
'cl_ly_id',
'cl_filter_field',
'cl_filter_value',
'cl_out_field',
'cl_active',
'cl_created_on',
'cl_created_by',
'cl_updated_on',
'cl_updated_by',
'cl_deleted_on',
'cl_deleted_by',
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class DefaultAnalysisField
* @package App\Models
*/
class DefaultAnalysisField extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'daf';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'daf_created_on';
/**
* The name of the "created at" column.
*
* @var string
*/
const UPDATED_AT = 'daf_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'default_analysis_field';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'daf_id';
/**
* @var string[]
*/
protected $fillable = [
'daf_ly_id',
'daf_grp_id',
'daf_jumlah_provinsi',
'daf_jumlah_kabupaten',
'daf_jumlah_kecamatan',
'daf_jumlah_desa',
'daf_density',
'daf_area_name',
'daf_size_area',
'daf_active',
'daf_created_on',
'daf_created_by',
'daf_updated_on',
'daf_updated_by',
'daf_deleted_on',
'daf_deleted_by',
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
/**
* Class Group
* @package App\Models
*/
class Group extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'grp';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'grp_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'grp_updated_on';
/**
* @var string $primaryKey
*/
protected $primaryKey = 'grp_id';
/**
* The attributes that are mass assignable.
*
* @var string[]
*/
protected $fillable = [
'grp_name',
];
/**
* Function set relation users model.
*
* @return HasMany
*/
public function users()
{
return $this->hasMany(User::class, 'us_grp_id');
}
/**
* Function set relation group layers model.
*
* @return HasMany
*/
public function groupLayers(){
return $this->hasMany(GroupLayers::class, 'grl_grp_id', 'grp_id');
}
}
\ No newline at end of file
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class GroupCustomLayer
* @package App\Models
*/
class GroupCustomLayer extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'gcl';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'gcl_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'gcl_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'group_custom_layer';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'gcl_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'gcl_name',
'gcl_cl_source',
'gcl_active',
'gcl_created_on',
'gcl_created_by',
'gcl_updated_on',
'gcl_updated_by',
'gcl_deleted_on',
'gcl_deleted_by',
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Testing\Fluent\Concerns\Has;
/**
* Class GroupLayers
* @package App\Models
*/
class GroupLayers extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'grl_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'grl_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'grl';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'group_layers';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'grl_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'grl_grp_id',
'grl_ly_id',
'grl_active',
'grl_created_on',
'grl_created_by',
'grl_updated_on',
'grl_updated_by',
'grl_deleted_on',
'grl_deleted_by',
];
/**
* Function set relation group model.
*
* @return BelongsTo
*/
public function group()
{
return $this->belongsTo(Group::class, 'grl_grp_id', 'grp_id');
}
/**
* Function set relation group model.
*
* @return HasOne
*/
public function layers()
{
return $this->hasOne(Layers::class, 'grl_ly_id', 'ly_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Class GroupPlan
* @package App\Models
*/
class GroupPlan extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'gpp_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'gpp_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'gpp';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'group_plan';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'gpp_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'gpp_pl_id',
'gpp_grp_id',
'gpp_number_of_user',
'gpp_number_of_site',
'gpp_discount',
'gpp_expired_on',
'gpp_active',
'gpp_created_on',
'gpp_created_by',
'gpp_updated_on',
'gpp_updated_by',
'gpp_deleted_on',
'gpp_deleted_by',
];
/**
* Function set relation group model.
*
* @return BelongsTo
*/
public function group()
{
return $this->belongsTo(Group::class, 'gpp_grp_id', 'grp_id');
}
/**
* Function set relation plan model.
*
* @return BelongsTo
*/
public function plan()
{
return $this->belongsTo(Plans::class, 'gpp_pl_id', 'pl_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Class GroupService
* @package App\Models
*/
class GroupService extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'gsv_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'gsv_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'gsv';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'group_service';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'gsv_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'gsv_grp_id',
'gsv_sv_id',
'gsv_active',
'gsv_created_on',
'gsv_created_by',
'gsv_updated_on',
'gsv_updated_by',
'gsv_deleted_on',
'gsv_deleted_by',
];
/**
* Function set relation group model.
*
* @return BelongsTo
*/
public function group()
{
return $this->belongsTo(Group::class, 'gsv_grp_id', 'grp_id');
}
/**
* Function set relation service model.
*
* @return BelongsTo
*/
public function service()
{
return $this->belongsTo(Services::class, 'gsv_sv_id', 'sv_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Class GroupTrial
* @package App\Models
*/
class GroupTrial extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'gtr_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'gtr_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'gtr';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'group_trial';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'gtr_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'gtr_pl_id',
'gtr_us_id',
'gtr_expired_on',
'gtr_active',
'gtr_created_on',
'gtr_created_by',
'gtr_updated_on',
'gtr_updated_by',
'gtr_deleted_on',
'gtr_deleted_by',
];
/**
* Function set relation user model;
*
* @return BelongsTo
*/
public function user()
{
return $this->belongsTo(User::class, 'gtr_us_id', 'us_id');
}
/**
* Function set relation plan model.
*
* @return BelongsTo
*/
public function plan()
{
return $this->belongsTo(Plans::class, 'gtr_pl_id', 'gtr_us_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
/**
* Class GroupType
* @package App\Models
*/
class GroupType extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'grt_created_on';
/**
* The name of the "created at" column.
*
* @var string
*/
const UPDATED_AT = 'grt_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'grt';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'group_type';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'grt_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'grt_name',
'grt_code',
'grt_active',
'grt_created_on',
'grt_created_by',
'grt_update_on',
'grt_update_by',
'grt_deleted_on',
'grt_deleted_by',
];
/**
* Function relation group.
*
* @return HasMany
*/
public function group()
{
return $this->hasMany(Group::class, 'grp_grt_id', 'grt_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\HasMany;
/**
* Class LayerCategory
* @package App\Models
*/
class LayerCategory extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'lc';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'lc_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'lc_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'layer_category';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'lc_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'lc_name',
'lc_parent',
'lc_order',
'lc_active',
'lc_created_on',
'lc_created_by',
'lc_updated_on',
'lc_updated_by',
'lc_deleted_on',
'lc_deleted_by',
];
/**
* Function set relation layers model.
*
* @return HasMany
*/
public function layers()
{
return $this->hasMany(Layers::class, 'ly_lc_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasOne;
/**
* Class LayerDetail
* @package App\Models
*/
class LayerDetail extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'ld_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'ld_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'ld';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'layer_detail';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'ld_id';
/**
* @var array
*/
protected $fillable = [
'ld_ly_id',
'ld_url_id',
'ld_sv_id',
'ld_title_field',
'ld_out_field',
'ld_query_field',
'ld_ta_id',
'ld_distribution',
'ld_uom',
'ld_analysis_field',
'ld_analysis_label',
'ld_statistic_type',
'ld_field_type',
'ld_analysis',
'ld_active',
'ld_created_on',
'ld_created_by',
'ld_updated_on',
'ld_updated_by',
'ld_deleted_on',
'ld_deleted_by',
];
/**
* Function set relation layers model.
*
* @return HasOne
*/
public function layer()
{
return $this->hasOne(Layers::class, 'ld_ly_id', 'ly_id');
}
/**
* Function set relation services model.
*
* @return BelongsTo
*/
public function service()
{
return $this->belongsTo(Services::class, 'ld_sv_id', 'sv_id');
}
/**
* Function set relation type area model.
*
* @return BelongsTo
*/
public function typeArea()
{
return $this->belongsTo(TypeArea::class, 'ld_ta_id', 'ta_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
/**
* Class LayerFilter
* @package App\Models
*/
class LayerFilter extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'lf_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'lf_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'lf';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'layer_filter';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'lf_id';
/**
* @var array
*/
protected $fillable = [
'lf_name',
'lf_layer_type_id',
'lf_type_area_id',
'lf_us_id',
'lf_properties',
'lf_source',
'lf_out_fields',
'lf_file_hash_name',
'lf_active',
'lf_created_on',
'lf_created_by',
'lf_updated_on',
'lf_updated_by',
'lf_deleted_on',
'lf_deleted_by',
];
/**
* Function set relation layer filter detail model.
*
* @return HasMany
*/
public function details()
{
return $this->hasMany(LayerFilterDetail::class, 'lfd_id');
}
/**
* Function set relation type area model.
*
* @return BelongsTo
*/
public function typeArea()
{
return $this->belongsTo(TypeArea::class, 'lf_type_area_id', 'ta_id');
}
/**
* Function set relation users model.
*
* @return BelongsTo
*/
public function users()
{
return $this->belongsTo(User::class, 'lf_us_id', 'ud_id');
}
/**
* Function set relation layer type model.
*
* @return BelongsTo
*/
public function layerType()
{
return $this->belongsTo(LayerType::class, 'lf_layer_type_id', 'lt_id');
}
}
\ No newline at end of file
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Class LayerFilterDetail
* @package App\Models
*/
class LayerFilterDetail extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'lfd_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'lfd_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'lfd';
/**
* @var array $casts
*/
public $casts = [
'lfd_attributes' => 'array',
'lfd_geometry' => 'array'
];
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'layer_filter_detail';
/**
* The primary key for the model.
*
* @var string $primaryKey
*/
protected $primaryKey = 'lfd_id';
/**
* @var array $fillable
*/
protected $fillable = [
'lfd_layer_filter_id',
'lfd_attributes',
'lfd_geometry',
'lfd_created_on',
'lfd_created_by',
'lfd_updated_on',
'lfd_updated_by',
'lfd_deleted_on',
'lfd_deleted_by',
];
/**
* Function set relation layer filter model.
*
* @return BelongsTo
*/
public function layerFilter()
{
return $this->belongsTo(LayerFilter::class, 'lfd_layer_filter_id', 'lfd_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* Class LayerMapping
* @package App\Models
*/
class LayerMapping extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'lm_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'lm_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'lm';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'layer_mapping';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'lm_id';
protected $fillable = [
'lm_label',
'lm_ly_id',
'lm_cc_id',
'lm_stp_id',
'lm_grp_id',
'lm_active',
'lm_created_on',
'lm_created_by',
'lm_updated_on',
'lm_updated_by',
'lm_deleted_on',
'lm_deleted_by',
];
/**
* Function set relation layers model.
*
* @return BelongsTo
*/
public function layers()
{
return $this->belongsTo(Layers::class, 'lm_ly_id', 'ly_id');
}
/**
* Function set relation custom category model.
*
* @return BelongsTo
*/
public function customCategory()
{
return $this->belongsTo(CustomCategory::class, 'lm_cc_id', 'cc_id');
}
/**
* Function set relation site type model.
*
* @return BelongsTo
*/
public function siteType()
{
return $this->belongsTo(type::class, 'lm_stp_id', 'stp_id');
}
/**
* Function set relation group model.
*
* @return BelongsTo
*/
public function group()
{
return $this->belongsTo(Group::class, 'lm_grp_id', 'grp_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class LayerType
* @package App\Models
*/
class LayerType extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'lt';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'lt_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'lt_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'layer_type';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'lt_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'lt_name',
'lt_active',
'lt_created_on',
'lt_created_by',
'lt_updated_on',
'lt_updated_by',
'lt_deleted_on',
'lt_deleted_by',
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasOne;
/**
* Class Layers
* @package App\Models
*/
class Layers extends Model
{
use ScopeModels;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'ly_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'ly_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'ly';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'layers';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'ly_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'ly_name',
'ly_description',
'ly_lc_id',
'ly_lt_id',
'ly_viewer',
'ly_custom_layer',
'ly_active',
'ly_created_on',
'ly_created_by',
'ly_updated_on',
'ly_updated_by',
'ly_deleted_on',
'ly_deleted_by',
];
/**
* Function set relation basket size model.
*
* @return BelongsTo
*/
public function basketSize()
{
return $this->belongsTo(size::class, 'bs_ly_id', 'ly_id');
}
/**
* Function set relation category model.
*
* @return BelongsTo
*/
public function category()
{
return $this->belongsTo(LayerCategory::class, 'ly_lc_id', 'lc_id');
}
/**
* Function set relation layer type model.
*
* @return BelongsTo
*/
public function type()
{
return $this->belongsTo(LayerType::class, 'ly_lt_id', 'lt_id');
}
/**
* Function set relation layer detail model.
*
* @return HasOne
*/
public function details()
{
return $this->hasOne(LayerDetail::class, 'ld_ly_id', 'ly_id');
}
/**
* Function set relation layer detail model.
*
* @return HasOne
*/
public function groupLayer()
{
return $this->hasOne(GroupLayers::class, 'grl_ly_id', 'ly_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class PlanDescriptions
* @package App\Models
*/
class PlanDescriptions extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'pld';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'pld_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'pld_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'plan_descriptions';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'pld_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'pld_pl_id',
'pld_description',
'pld_active',
'pld_created_on',
'pld_created_by',
'pld_updated_on',
'pld_updated_by',
'pld_deleted_on',
'pld_deleted_by',
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class Plans
* @package App\Models
*/
class Plans extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'pl';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'pl_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'pl_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'plans';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'pl_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'pl_name',
'pl_number_of_user',
'pl_number_of_site',
'pl_price',
'pl_min_period',
'pl_active',
'pl_created_on',
'pl_created_by',
'pl_updated_on',
'pl_updated_by',
'pl_deleted_on',
'pl_deleted_by',
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class Relations
* @package App\Models
*/
class Relations extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'rel';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'rel_created_on';
/**
* The name of the "created at" column.
*
* @var string
*/
const UPDATED_AT = 'rel_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'relations';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'rel_id';
protected $fillable = [
'rel_name',
'rel_code',
'rel_active',
'rel_created_on',
'rel_created_by',
'rel_updated_on',
'rel_updated_by',
'rel_deleted_on',
'rel_deleted_by',
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class Services
* @package App\Models
*/
class Services extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'sv';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'sv_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'sv_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'services';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'sv_id';
/**
* @var string[]
*/
protected $fillable = [
'sv_name',
'sv_code',
'sv_url',
'sv_active',
'sv_created_on',
'sv_created_by',
'sv_updated_on',
'sv_updated_by',
'sv_deleted_on',
'sv_deleted_by',
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class SiteAnalysis
* @package App\Models
*/
class SiteAnalysis extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'sa';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'sa_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'sa_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'site_analysis';
/**
* Set the primary key of the model.
*
* @var string
*/
protected $primaryKey = 'sa_id';
/**
* The attributes that are mass assignable.
*
* @var array $fillable
*/
protected $fillable = [
'sa_st_id',
'sa_code',
'sa_name',
'sa_name_detail',
'sa_coordinates',
'sa_spatial_reference',
'sa_attributes',
'sa_polygon_length',
'sa_active',
'sa_created_on',
'sa_created_by',
'sa_updated_on',
'sa_updated_by',
'sa_deleted_on',
'sa_deleted_by'
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class SiteType
* @package App\Models
*/
class SiteType extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'stp';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'stp_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'stp_updated_on';
/**
* The table associated with the model.
*
* @var string $table
*/
protected $table = 'site_type';
/**
* The primary key for the model.
*
* @var string $primaryKey
*/
protected $primaryKey = 'stp_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'stp_name',
'stp_active',
'stp_created_on',
'stp_created_by',
'stp_updated_on',
'stp_updated_by',
'stp_deleted_on',
'stp_deleted_by',
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class Sites
* @package App\Models
*/
class Sites extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'st';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'st_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'st_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'sites';
/**
* Set the primary key of the model.
*
* @var string
*/
protected $primaryKey = 'st_id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'st_name',
'st_address',
'st_description',
'st_grp_id',
'st_stp_id',
'st_longitude',
'st_latitude',
'st_active',
'st_created_on',
'st_created_by',
'st_updated_on',
'st_updated_by',
'st_deleted_on',
'st_deleted_by'
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class TypeArea
* @package App\Models
*/
class TypeArea extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'ta';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'ta_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'ta_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'type_area';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'ta_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'ta_name',
'ta_code',
'ta_active',
'ta_created_on',
'ta_created_by',
'ta_updated_on',
'ta_updated_by',
'ta_deleted_on',
'ta_deleted_by'
];
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Models\UseOfReportsDetail;
class UseOfReports extends Model
{
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'uor_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'uor_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'use_of_reports';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'uor_id';
protected $fillable = [
'uor_quota',
'uor_grp_id',
'uor_default',
'uor_active',
'uor_created_on',
'uor_created_by',
'uor_updated_on',
'uor_updated_by',
'uor_deleted_on',
'uor_deleted_by',
];
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
public $timestamps = false;
/**
* Function get all data use of reports.
*
* @return array
*/
public function getAllData(): array
{
$useOfReports = $this->select(
[
'use_of_reports.*',
'grp.grp_id',
'grp.grp_name'
]
)->leftJoin('groups AS grp', 'use_of_reports.uor_grp_id', '=', 'grp.grp_id')
->whereNull('grp_deleted_on')
->whereNull('uor_deleted_on')
->get()->toArray();
foreach ($useOfReports as $key => $value) {
$useOfReports[$key]['details'] = (new UseOfReportsDetail())->select(['use_of_reports_detail.*'])
->where('uod_uor_id', $value['uor_id'])
->whereNull('uod_deleted_on')
->get()
->toArray();
};
return $useOfReports;
}
/**
* Function get all active data use of reports.
*
* @return array
*/
public function getAllActiveData(): array
{
$useOfReports = $this->select(
[
'use_of_reports.*',
'grp.grp_id',
'grp.grp_name'
]
)->leftJoin('groups AS grp', 'use_of_reports.uor_grp_id', '=', 'grp.grp_id')
->whereNull('grp_deleted_on')
->whereNull('uor_deleted_on')
->where('uor_active', '=', 'Y')
->get()->toArray();
foreach ($useOfReports as $key => $value) {
$useOfReports[$key]['details'] = (new UseOfReportsDetail())->select(['use_of_reports_detail.*'])
->where('uod_uor_id', $value['uor_id'])
->whereNull('uod_deleted_on')
->get()
->toArray();
};
return $useOfReports;
}
/**
* Function get data use of reports by id.
*
* @return array
*/
public function getById($id): array
{
$useOfReports = $this->select(
[
'use_of_reports.*',
'grp.grp_id',
'grp.grp_name'
]
)->leftJoin('groups AS grp', 'use_of_reports.uor_grp_id', '=', 'grp.grp_id')
->where('uor_id', '=', $id)
->whereNull('grp_deleted_on')
->whereNull('uor_deleted_on')
->get()->toArray();
foreach ($useOfReports as $key => $value) {
$useOfReports[$key]['details'] = (new UseOfReportsDetail())->select(['use_of_reports_detail.*'])
->where('uod_uor_id', $value['uor_id'])
->whereNull('uod_deleted_on')
->get()
->toArray();
};
return $useOfReports;
}
/**
* Function get data use of reports by group id.
*
* @return array
*/
public function getByGroupId($id): array
{
$useOfReports = $this->select(
[
'use_of_reports.*',
'grp.grp_id',
'grp.grp_name'
]
)->leftJoin('groups AS grp', 'use_of_reports.uor_grp_id', '=', 'grp.grp_id')
->where('uor_grp_id', '=', $id)
->whereNull('grp_deleted_on')
->whereNull('uor_deleted_on')
->get()->toArray();
foreach ($useOfReports as $key => $value) {
$useOfReports[$key]['details'] = (new UseOfReportsDetail())->select(['use_of_reports_detail.*'])
->where('uod_uor_id', $value['uor_id'])
->whereNull('uod_deleted_on')
->get()
->toArray();
};
return $useOfReports;
}
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class UseOfReportsDetail extends Model
{
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'uod_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'uod_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'use_of_reports_detail';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'uod_id';
protected $fillable = [
'uod_type',
'uod_uor_id',
'uod_used_on',
'uod_used_by',
'uod_active',
'uod_created_on',
'uod_created_by',
'uod_updated_on',
'uod_updated_by',
'uod_deleted_on',
'uod_deleted_by',
];
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
public $timestamps = false;
/**
* Function get all data use of reports detail.
*
* @return array
*/
public function getAllData(): array
{
$plans = $this
->whereNull('uod_deleted_on');
return $plans->get()->toArray();
}
/**
* Function get all active data use of reports detail.
*
* @return array
*/
public function getAllActiveData(): array
{
$plans = $this->where('uod_active', '=', 'Y')
->whereNull('uod_deleted_on');
return $plans->get()->toArray();
}
/**
* Function get all active data use of reports detail by uor id.
*
* @return array
*/
public function getByUorId($id): array
{
$plans = $this->where('uod_active', '=', 'Y')
->where('uod_uor_id', '=', $id)
->whereNull('uod_deleted_on');
return $plans->get()->toArray();
}
}
<?php
namespace App\Models;
use App\Traits\CreatedFields;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
/**
* Class User
* @package App\Models
*/
class User extends Authenticatable
{
use ScopeModels, CreatedFields, HasApiTokens, HasFactory, Notifiable;
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'us_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'us_updated_on';
/**
* @var string $prefix
*/
public string $prefix = 'us';
/**
* @var string $primaryKey
*/
protected $primaryKey = 'us_id';
/**
* The attributes that are mass assignable.
*
* @var string[]
*/
protected $fillable = [
'us_name', 'us_email', 'us_grp_id', 'us_created_by'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var string[]
*/
protected $hidden = [
'us_password',
];
/**
* Function set relation group model.
*
* @return BelongsTo
*/
public function group()
{
return $this->belongsTo(Group::class, 'us_grp_id', 'grp_id');
}
/**
* Function set relation roles model.
*
* @return HasOne
*/
public function role()
{
return $this->hasOne(UserRoles::class, 'ur_id', 'us_ur_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class UserLogData
* @package App\Models
*/
class UserLogData extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'uld';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'uld_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'uld_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'user_log_data';
/**
* The primary key for the model.
*
* @var string $primaryKey
*/
protected $primaryKey = 'uld_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'uld_us_id',
'uld_action',
'uld_data',
'uld_active',
'uld_created_on',
'uld_created_by',
'uld_updated_on',
'uld_updated_by',
'uld_deleted_on',
'uld_deleted_by',
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
/**
* Class UserLogPassword
* @package App\Models
*/
class UserLogPassword extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'ulp';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'ulp_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'ulp_updated_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'user_log_password';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'ulp_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'ulp_us_id',
'ulp_password',
'ulp_active',
'ulp_created_on',
'ulp_created_by',
'ulp_updated_on',
'ulp_updated_by',
'ulp_deleted_on',
'ulp_deleted_by',
];
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasOne;
/**
* Class UserRoles
* @package App\Models
*/
class UserRoles extends Model
{
use ScopeModels;
/**
* @var string $prefix
*/
public string $prefix = 'ur';
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'ur_created_on';
/**
* The name of the "created at" column.
*
* @var string
*/
const UPDATED_AT = 'ur_update_on';
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'user_roles';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'ur_id';
protected $fillable = [
'ur_name',
'ur_code',
'ur_active',
'ur_created_on',
'ur_created_by',
'ur_update_on',
'ur_update_by',
'ur_deleted_on',
'ur_deleted_by',
];
/**
* Function set relation roles model.
*
* @return BelongsTo
*/
public function user()
{
return $this->belongsTo(User::class, 'us_ur_id', 'ur_id');
}
}
<?php
namespace App\Models;
use App\Traits\ScopeModels;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
/**
* Class UserTokens
* @package App\Models
*/
class UserTokens extends Model
{
/**
* The name of the "created at" column.
*
* @var string
*/
const CREATED_AT = 'ut_created_on';
/**
* The name of the "update at" column.
*
* @var string
*/
const UPDATED_AT = 'ut_updated_on';
/**
* The attributes that should be mutated to dates.
*
* @var array
*/
public $timestamps = false;
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'user_tokens';
/**
* The primary key for the model.
*
* @var string
*/
protected $primaryKey = 'ut_id';
/**
* @var string[] $fillable
*/
protected $fillable = [
'ut_token',
'ut_type',
'ut_client_ip',
'ut_client_agent',
'ut_us_id',
'ut_remember',
'ut_active',
'ut_created_on',
'ut_expired_on',
'ut_deleted_on'
];
}
<?php
namespace App\Observers;
use Illuminate\Database\Eloquent\Model;
/**
* Class CreatedFieldsObserver
* @package App\Observers
*/
class CreatedFieldsObserver
{
/**
* Handle the User "creating" event.
*
* @param Model $model
*
*/
public function creating(Model $model)
{
$model->{$model->prefix . '_created_by'} = 1;
}
/**
* Handle the User "updating" event.
*
* @param Model $model
*/
public function updating(Model $model)
{
$model->{$model->prefix . '_updated_by'} = 1;
}
}
\ No newline at end of file
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
}
<?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Gate;
class AuthServiceProvider extends ServiceProvider
{
/**
* The policy mappings for the application.
*
* @var array<class-string, class-string>
*/
protected $policies = [
// 'App\Models\Model' => 'App\Policies\ModelPolicy',
];
/**
* Register any authentication / authorization services.
*
* @return void
*/
public function boot()
{
$this->registerPolicies();
//
}
}
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Broadcast;
use Illuminate\Support\ServiceProvider;
class BroadcastServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Broadcast::routes();
require base_path('routes/channels.php');
}
}
<?php
namespace App\Providers;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Event;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var array<class-string, array<int, class-string>>
*/
protected $listen = [
Registered::class => [
SendEmailVerificationNotification::class,
],
];
/**
* Register any events for your application.
*
* @return void
*/
public function boot()
{
//
}
/**
* Determine if events and listeners should be automatically discovered.
*
* @return bool
*/
public function shouldDiscoverEvents()
{
return false;
}
}
<?php
namespace App\Providers;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;
class RouteServiceProvider extends ServiceProvider
{
/**
* The path to the "home" route for your application.
*
* This is used by Laravel authentication to redirect users after login.
*
* @var string
*/
public const HOME = '/home';
/**
* Define your route model bindings, pattern filters, etc.
*
* @return void
*/
public function boot()
{
$this->configureRateLimiting();
$this->routes(function () {
Route::prefix('api')
->middleware('api')
->group(base_path('routes/api.php'));
Route::middleware('web')
->group(base_path('routes/web.php'));
});
}
/**
* Configure the rate limiters for the application.
*
* @return void
*/
protected function configureRateLimiting()
{
RateLimiter::for('api', function (Request $request) {
return Limit::perMinute(60)->by($request->user()?->id ?: $request->ip());
});
}
}
<?php
namespace App\Traits;
use Illuminate\Database\Eloquent\Model;
/**
* Class ActionsModels
* @package App\Traits
*/
trait ActionsModels
{
}
\ No newline at end of file
<?php
namespace App\Traits;
use App\Observers\CreatedFieldsObserver;
/**
* Trait CreatedFields
* @package App\Traits
*/
trait CreatedFields
{
public static function bootCreatedFields()
{
static::observe(CreatedFieldsObserver::class);
}
}
\ No newline at end of file
<?php
namespace App\Traits;
use Illuminate\Database\Eloquent\Builder;
/**
* Class TraitModels
* @package App\Traits
*/
trait ScopeModels
{
/**
* @param Builder $query
* @return Builder
*/
public function scopeActive(Builder $query): Builder
{
return $query->where($this->prefix . '_active', '=', 'Y');
}
}
\ No newline at end of file
#!/usr/bin/env php
<?php
define('LARAVEL_START', microtime(true));
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for our application. We just need to utilize it! We'll require it
| into the script here so that we do not have to worry about the
| loading of any of our classes manually. It's great to relax.
|
*/
require __DIR__.'/vendor/autoload.php';
$app = require_once __DIR__.'/bootstrap/app.php';
/*
|--------------------------------------------------------------------------
| Run The Artisan Application
|--------------------------------------------------------------------------
|
| When we run the console application, the current CLI command will be
| executed in this console and the response sent back to a terminal
| or another output device for the developers. Here goes nothing!
|
*/
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
$status = $kernel->handle(
$input = new Symfony\Component\Console\Input\ArgvInput,
new Symfony\Component\Console\Output\ConsoleOutput
);
/*
|--------------------------------------------------------------------------
| Shutdown The Application
|--------------------------------------------------------------------------
|
| Once Artisan has finished running, we will fire off the shutdown events
| so that any final work may be done by the application before we shut
| down the process. This is the last thing to happen to the request.
|
*/
$kernel->terminate($input, $status);
exit($status);
<?php
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of Laravel, and is
| the IoC container for the system binding all of the various parts.
|
*/
$app = new Illuminate\Foundation\Application(
$_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)
);
/*
|--------------------------------------------------------------------------
| Bind Important Interfaces
|--------------------------------------------------------------------------
|
| Next, we need to bind some important interfaces into the container so
| we will be able to resolve them when needed. The kernels serve the
| incoming requests to this application from both the web and CLI.
|
*/
$app->singleton(
Illuminate\Contracts\Http\Kernel::class,
App\Http\Kernel::class
);
$app->singleton(
Illuminate\Contracts\Console\Kernel::class,
App\Console\Kernel::class
);
$app->singleton(
Illuminate\Contracts\Debug\ExceptionHandler::class,
App\Exceptions\Handler::class
);
/*
|--------------------------------------------------------------------------
| Return The Application
|--------------------------------------------------------------------------
|
| This script returns the application instance. The instance is given to
| the calling script so we can separate the building of the instances
| from the actual running of the application and sending responses.
|
*/
return $app;
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"php": "8.1.*",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^9.2",
"laravel/sanctum": "^2.14",
"laravel/tinker": "^2.7",
"nuwave/lighthouse": "^5.42"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^1.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}
This source diff could not be displayed because it is too large. You can view the blob instead.
File added
<?php
use Illuminate\Support\Facades\Facade;
return [
/*
|--------------------------------------------------------------------------
| Application Name
|--------------------------------------------------------------------------
|
| This value is the name of your application. This value is used when the
| framework needs to place the application's name in a notification or
| any other location as required by the application or its packages.
|
*/
'name' => env('APP_NAME', 'Laravel'),
/*
|--------------------------------------------------------------------------
| Application Environment
|--------------------------------------------------------------------------
|
| This value determines the "environment" your application is currently
| running in. This may determine how you prefer to configure various
| services the application utilizes. Set this in your ".env" file.
|
*/
'env' => env('APP_ENV', 'production'),
/*
|--------------------------------------------------------------------------
| Application Debug Mode
|--------------------------------------------------------------------------
|
| When your application is in debug mode, detailed error messages with
| stack traces will be shown on every error that occurs within your
| application. If disabled, a simple generic error page is shown.
|
*/
'debug' => (bool) env('APP_DEBUG', false),
/*
|--------------------------------------------------------------------------
| Application URL
|--------------------------------------------------------------------------
|
| This URL is used by the console to properly generate URLs when using
| the Artisan command line tool. You should set this to the root of
| your application so that it is used when running Artisan tasks.
|
*/
'url' => env('APP_URL', 'http://localhost'),
'asset_url' => env('ASSET_URL'),
/*
|--------------------------------------------------------------------------
| Application Timezone
|--------------------------------------------------------------------------
|
| Here you may specify the default timezone for your application, which
| will be used by the PHP date and date-time functions. We have gone
| ahead and set this to a sensible default for you out of the box.
|
*/
'timezone' => 'UTC',
/*
|--------------------------------------------------------------------------
| Application Locale Configuration
|--------------------------------------------------------------------------
|
| The application locale determines the default locale that will be used
| by the translation service provider. You are free to set this value
| to any of the locales which will be supported by the application.
|
*/
'locale' => 'en',
/*
|--------------------------------------------------------------------------
| Application Fallback Locale
|--------------------------------------------------------------------------
|
| The fallback locale determines the locale to use when the current one
| is not available. You may change the value to correspond to any of
| the language folders that are provided through your application.
|
*/
'fallback_locale' => 'en',
/*
|--------------------------------------------------------------------------
| Faker Locale
|--------------------------------------------------------------------------
|
| This locale will be used by the Faker PHP library when generating fake
| data for your database seeds. For example, this will be used to get
| localized telephone numbers, street address information and more.
|
*/
'faker_locale' => 'en_US',
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
|
| This key is used by the Illuminate encrypter service and should be set
| to a random, 32 character string, otherwise these encrypted strings
| will not be safe. Please do this before deploying an application!
|
*/
'key' => env('APP_KEY'),
'cipher' => 'AES-256-CBC',
/*
|--------------------------------------------------------------------------
| Autoloaded Service Providers
|--------------------------------------------------------------------------
|
| The service providers listed here will be automatically loaded on the
| request to your application. Feel free to add your own services to
| this array to grant expanded functionality to your applications.
|
*/
'providers' => [
/*
* Laravel Framework Service Providers...
*/
Illuminate\Auth\AuthServiceProvider::class,
Illuminate\Broadcasting\BroadcastServiceProvider::class,
Illuminate\Bus\BusServiceProvider::class,
Illuminate\Cache\CacheServiceProvider::class,
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
Illuminate\Cookie\CookieServiceProvider::class,
Illuminate\Database\DatabaseServiceProvider::class,
Illuminate\Encryption\EncryptionServiceProvider::class,
Illuminate\Filesystem\FilesystemServiceProvider::class,
Illuminate\Foundation\Providers\FoundationServiceProvider::class,
Illuminate\Hashing\HashServiceProvider::class,
Illuminate\Mail\MailServiceProvider::class,
Illuminate\Notifications\NotificationServiceProvider::class,
Illuminate\Pagination\PaginationServiceProvider::class,
Illuminate\Pipeline\PipelineServiceProvider::class,
Illuminate\Queue\QueueServiceProvider::class,
Illuminate\Redis\RedisServiceProvider::class,
Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
Illuminate\Session\SessionServiceProvider::class,
Illuminate\Translation\TranslationServiceProvider::class,
Illuminate\Validation\ValidationServiceProvider::class,
Illuminate\View\ViewServiceProvider::class,
/*
* Package Service Providers...
*/
/*
* Application Service Providers...
*/
App\Providers\AppServiceProvider::class,
App\Providers\AuthServiceProvider::class,
// App\Providers\BroadcastServiceProvider::class,
App\Providers\EventServiceProvider::class,
App\Providers\RouteServiceProvider::class,
],
/*
|--------------------------------------------------------------------------
| Class Aliases
|--------------------------------------------------------------------------
|
| This array of class aliases will be registered when this application
| is started. However, feel free to register as many as you wish as
| the aliases are "lazy" loaded so they don't hinder performance.
|
*/
'aliases' => Facade::defaultAliases()->merge([
// ...
])->toArray(),
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Defaults
|--------------------------------------------------------------------------
|
| This option controls the default authentication "guard" and password
| reset options for your application. You may change these defaults
| as required, but they're a perfect start for most applications.
|
*/
'defaults' => [
'guard' => 'web',
'passwords' => 'users',
],
/*
|--------------------------------------------------------------------------
| Authentication Guards
|--------------------------------------------------------------------------
|
| Next, you may define every authentication guard for your application.
| Of course, a great default configuration has been defined for you
| here which uses session storage and the Eloquent user provider.
|
| All authentication drivers have a user provider. This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
|
| Supported: "session"
|
*/
'guards' => [
'web' => [
'driver' => 'session',
'provider' => 'users',
],
],
/*
|--------------------------------------------------------------------------
| User Providers
|--------------------------------------------------------------------------
|
| All authentication drivers have a user provider. This defines how the
| users are actually retrieved out of your database or other storage
| mechanisms used by this application to persist your user's data.
|
| If you have multiple user tables or models you may configure multiple
| sources which represent each model / table. These sources may then
| be assigned to any extra authentication guards you have defined.
|
| Supported: "database", "eloquent"
|
*/
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => App\Models\User::class,
],
// 'users' => [
// 'driver' => 'database',
// 'table' => 'users',
// ],
],
/*
|--------------------------------------------------------------------------
| Resetting Passwords
|--------------------------------------------------------------------------
|
| You may specify multiple password reset configurations if you have more
| than one user table or model in the application and you want to have
| separate password reset settings based on the specific user types.
|
| The expire time is the number of minutes that each reset token will be
| considered valid. This security feature keeps tokens short-lived so
| they have less time to be guessed. You may change this as needed.
|
*/
'passwords' => [
'users' => [
'provider' => 'users',
'table' => 'password_resets',
'expire' => 60,
'throttle' => 60,
],
],
/*
|--------------------------------------------------------------------------
| Password Confirmation Timeout
|--------------------------------------------------------------------------
|
| Here you may define the amount of seconds before a password confirmation
| times out and the user is prompted to re-enter their password via the
| confirmation screen. By default, the timeout lasts for three hours.
|
*/
'password_timeout' => 10800,
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Broadcaster
|--------------------------------------------------------------------------
|
| This option controls the default broadcaster that will be used by the
| framework when an event needs to be broadcast. You may set this to
| any of the connections defined in the "connections" array below.
|
| Supported: "pusher", "ably", "redis", "log", "null"
|
*/
'default' => env('BROADCAST_DRIVER', 'null'),
/*
|--------------------------------------------------------------------------
| Broadcast Connections
|--------------------------------------------------------------------------
|
| Here you may define all of the broadcast connections that will be used
| to broadcast events to other systems or over websockets. Samples of
| each available type of connection are provided inside this array.
|
*/
'connections' => [
'pusher' => [
'driver' => 'pusher',
'key' => env('PUSHER_APP_KEY'),
'secret' => env('PUSHER_APP_SECRET'),
'app_id' => env('PUSHER_APP_ID'),
'options' => [
'cluster' => env('PUSHER_APP_CLUSTER'),
'useTLS' => true,
],
'client_options' => [
// Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html
],
],
'ably' => [
'driver' => 'ably',
'key' => env('ABLY_KEY'),
],
'redis' => [
'driver' => 'redis',
'connection' => 'default',
],
'log' => [
'driver' => 'log',
],
'null' => [
'driver' => 'null',
],
],
];
<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache connection that gets used while
| using this caching library. This connection is used when another is
| not explicitly specified when executing a given caching function.
|
*/
'default' => env('CACHE_DRIVER', 'file'),
/*
|--------------------------------------------------------------------------
| Cache Stores
|--------------------------------------------------------------------------
|
| Here you may define all of the cache "stores" for your application as
| well as their drivers. You may even define multiple stores for the
| same cache driver to group types of items stored in your caches.
|
| Supported drivers: "apc", "array", "database", "file",
| "memcached", "redis", "dynamodb", "octane", "null"
|
*/
'stores' => [
'apc' => [
'driver' => 'apc',
],
'array' => [
'driver' => 'array',
'serialize' => false,
],
'database' => [
'driver' => 'database',
'table' => 'cache',
'connection' => null,
'lock_connection' => null,
],
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
],
'memcached' => [
'driver' => 'memcached',
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
'sasl' => [
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
'options' => [
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
],
'servers' => [
[
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_PORT', 11211),
'weight' => 100,
],
],
],
'redis' => [
'driver' => 'redis',
'connection' => 'cache',
'lock_connection' => 'default',
],
'dynamodb' => [
'driver' => 'dynamodb',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
'endpoint' => env('DYNAMODB_ENDPOINT'),
],
'octane' => [
'driver' => 'octane',
],
],
/*
|--------------------------------------------------------------------------
| Cache Key Prefix
|--------------------------------------------------------------------------
|
| When utilizing a RAM based store such as APC or Memcached, there might
| be other applications utilizing the same cache. So, we'll specify a
| value to get prefixed to all our keys so we can avoid collisions.
|
*/
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Cross-Origin Resource Sharing (CORS) Configuration
|--------------------------------------------------------------------------
|
| Here you may configure your settings for cross-origin resource sharing
| or "CORS". This determines what cross-origin operations may execute
| in web browsers. You are free to adjust these settings as needed.
|
| To learn more: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
|
*/
'paths' => ['api/*', 'graphql', 'sanctum/csrf-cookie'],
'allowed_methods' => ['*'],
'allowed_origins' => ['*'],
'allowed_origins_patterns' => [],
'allowed_headers' => ['*'],
'exposed_headers' => [],
'max_age' => 0,
'supports_credentials' => false,
];
<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Database Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the database connections below you wish
| to use as your default connection for all database work. Of course
| you may use many connections at once using the Database library.
|
*/
'default' => env('DB_CONNECTION', 'mysql'),
/*
|--------------------------------------------------------------------------
| Database Connections
|--------------------------------------------------------------------------
|
| Here are each of the database connections setup for your application.
| Of course, examples of configuring each database platform that is
| supported by Laravel is shown below to make development simple.
|
|
| All database work in Laravel is done through the PHP PDO facilities
| so make sure you have the driver for your particular database of
| choice installed on your machine before you begin development.
|
*/
'connections' => [
'sqlite' => [
'driver' => 'sqlite',
'url' => env('DATABASE_URL'),
'database' => env('DB_DATABASE', database_path('database.sqlite')),
'prefix' => '',
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
],
'mysql' => [
'driver' => 'mysql',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '3306'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_unicode_ci',
'prefix' => '',
'prefix_indexes' => true,
'strict' => true,
'engine' => null,
'options' => extension_loaded('pdo_mysql') ? array_filter([
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
]) : [],
],
'pgsql' => [
'driver' => 'pgsql',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '5432'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'prefix' => '',
'prefix_indexes' => true,
'search_path' => 'public',
'sslmode' => 'prefer',
],
'sqlsrv' => [
'driver' => 'sqlsrv',
'url' => env('DATABASE_URL'),
'host' => env('DB_HOST', 'localhost'),
'port' => env('DB_PORT', '1433'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'prefix' => '',
'prefix_indexes' => true,
],
],
/*
|--------------------------------------------------------------------------
| Migration Repository Table
|--------------------------------------------------------------------------
|
| This table keeps track of all the migrations that have already run for
| your application. Using this information, we can determine which of
| the migrations on disk haven't actually been run in the database.
|
*/
'migrations' => 'migrations',
/*
|--------------------------------------------------------------------------
| Redis Databases
|--------------------------------------------------------------------------
|
| Redis is an open source, fast, and advanced key-value store that also
| provides a richer body of commands than a typical key-value system
| such as APC or Memcached. Laravel makes it easy to dig right in.
|
*/
'redis' => [
'client' => env('REDIS_CLIENT', 'phpredis'),
'options' => [
'cluster' => env('REDIS_CLUSTER', 'redis'),
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
],
'default' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_DB', '0'),
],
'cache' => [
'url' => env('REDIS_URL'),
'host' => env('REDIS_HOST', '127.0.0.1'),
'password' => env('REDIS_PASSWORD'),
'port' => env('REDIS_PORT', '6379'),
'database' => env('REDIS_CACHE_DB', '1'),
],
],
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| Here you may specify the default filesystem disk that should be used
| by the framework. The "local" disk, as well as a variety of cloud
| based disks are available to your application. Just store away!
|
*/
'default' => env('FILESYSTEM_DISK', 'local'),
/*
|--------------------------------------------------------------------------
| Filesystem Disks
|--------------------------------------------------------------------------
|
| Here you may configure as many filesystem "disks" as you wish, and you
| may even configure multiple disks of the same driver. Defaults have
| been set up for each driver as an example of the required values.
|
| Supported Drivers: "local", "ftp", "sftp", "s3"
|
*/
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/storage',
'visibility' => 'public',
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
],
],
/*
|--------------------------------------------------------------------------
| Symbolic Links
|--------------------------------------------------------------------------
|
| Here you may configure the symbolic links that will be created when the
| `storage:link` Artisan command is executed. The array keys should be
| the locations of the links and the values should be their targets.
|
*/
'links' => [
public_path('storage') => storage_path('app/public'),
],
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Hash Driver
|--------------------------------------------------------------------------
|
| This option controls the default hash driver that will be used to hash
| passwords for your application. By default, the bcrypt algorithm is
| used; however, you remain free to modify this option if you wish.
|
| Supported: "bcrypt", "argon", "argon2id"
|
*/
'driver' => 'bcrypt',
/*
|--------------------------------------------------------------------------
| Bcrypt Options
|--------------------------------------------------------------------------
|
| Here you may specify the configuration options that should be used when
| passwords are hashed using the Bcrypt algorithm. This will allow you
| to control the amount of time it takes to hash the given password.
|
*/
'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 10),
],
/*
|--------------------------------------------------------------------------
| Argon Options
|--------------------------------------------------------------------------
|
| Here you may specify the configuration options that should be used when
| passwords are hashed using the Argon algorithm. These will allow you
| to control the amount of time it takes to hash the given password.
|
*/
'argon' => [
'memory' => 65536,
'threads' => 1,
'time' => 4,
],
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Route Configuration
|--------------------------------------------------------------------------
|
| Controls the HTTP route that your GraphQL server responds to.
| You may set `route` => false, to disable the default route
| registration and take full control.
|
*/
'route' => [
/*
* The URI the endpoint responds to, e.g. mydomain.com/graphql.
*/
'uri' => '/graphql',
/*
* Lighthouse creates a named route for convenient URL generation and redirects.
*/
'name' => 'graphql',
/*
* Beware that middleware defined here runs before the GraphQL execution phase,
* make sure to return spec-compliant responses in case an error is thrown.
*/
'middleware' => [
\Laravel\Sanctum\Http\Middleware\EnsureFrontendRequestsAreStateful::class,
\Nuwave\Lighthouse\Support\Http\Middleware\AcceptJson::class,
// Logs in a user if they are authenticated. In contrast to Laravel's 'auth'
// middleware, this delegates auth and permission checks to the field level.
\Nuwave\Lighthouse\Support\Http\Middleware\AttemptAuthentication::class,
// Logs every incoming GraphQL query.
// \Nuwave\Lighthouse\Support\Http\Middleware\LogGraphQLQueries::class,
],
/*
* The `prefix` and `domain` configuration options are optional.
*/
//'prefix' => '',
//'domain' => '',
],
/*
|--------------------------------------------------------------------------
| Authentication Guard
|--------------------------------------------------------------------------
|
| The guard to use for authenticating GraphQL requests, if needed.
| Used in directives such as `@guard` or the `AttemptAuthentication` middleware.
| Falls back to the Laravel default if the defined guard is either `null` or not found.
|
*/
'guard' => 'sanctum',
/*
|--------------------------------------------------------------------------
| Schema Location
|--------------------------------------------------------------------------
|
| Path to your .graphql schema file.
| Additional schema files may be imported from within that file.
|
*/
'schema' => [
'register' => base_path('graphql/schema.graphql'),
],
/*
|--------------------------------------------------------------------------
| Schema Cache
|--------------------------------------------------------------------------
|
| A large part of schema generation consists of parsing and AST manipulation.
| This operation is very expensive, so it is highly recommended enabling
| caching of the final schema to optimize performance of large schemas.
|
*/
'cache' => [
/*
* Setting to true enables schema caching.
*/
'enable' => env('LIGHTHOUSE_CACHE_ENABLE', 'local' !== env('APP_ENV')),
/*
* Allowed values:
* - 1: uses the store, key and ttl config values to store the schema as a string in the given cache store.
* - 2: uses the path config value to store the schema in a PHP file allowing OPcache to pick it up.
*/
'version' => env('LIGHTHOUSE_CACHE_VERSION', 1),
/*
* Allows using a specific cache store, uses the app's default if set to null.
* Only relevant if version is set to 1.
*/
'store' => env('LIGHTHOUSE_CACHE_STORE', null),
/*
* The name of the cache item for the schema cache.
* Only relevant if version is set to 1.
*/
'key' => env('LIGHTHOUSE_CACHE_KEY', 'lighthouse-schema'),
/*
* Duration in seconds the schema should remain cached, null means forever.
* Only relevant if version is set to 1.
*/
'ttl' => env('LIGHTHOUSE_CACHE_TTL', null),
/*
* File path to store the lighthouse schema.
* Only relevant if version is set to 2.
*/
'path' => env('LIGHTHOUSE_CACHE_PATH', base_path('bootstrap/cache/lighthouse-schema.php')),
/*
* Should the `@cache` directive use a tagged cache?
*/
'tags' => false,
],
/*
|--------------------------------------------------------------------------
| Query Cache
|--------------------------------------------------------------------------
|
| Caches the result of parsing incoming query strings to boost performance on subsequent requests.
|
*/
'query_cache' => [
/*
* Setting to true enables query caching.
*/
'enable' => env('LIGHTHOUSE_QUERY_CACHE_ENABLE', true),
/*
* Allows using a specific cache store, uses the app's default if set to null.
*/
'store' => env('LIGHTHOUSE_QUERY_CACHE_STORE', null),
/*
* Duration in seconds the query should remain cached, null means forever.
*/
'ttl' => env(
'LIGHTHOUSE_QUERY_CACHE_TTL',
\Nuwave\Lighthouse\Support\AppVersion::atLeast(5.8)
? null
: 365 * 24 * 60 // For Laravel < 5.8 the exact value must be specified and it is counted in minutes
),
],
/*
|--------------------------------------------------------------------------
| Namespaces
|--------------------------------------------------------------------------
|
| These are the default namespaces where Lighthouse looks for classes to
| extend functionality of the schema. You may pass in either a string
| or an array, they are tried in order and the first match is used.
|
*/
'namespaces' => [
'models' => ['App', 'App\\Models'],
'queries' => 'App\\GraphQL\\Queries',
'mutations' => 'App\\GraphQL\\Mutations',
'subscriptions' => 'App\\GraphQL\\Subscriptions',
'interfaces' => 'App\\GraphQL\\Interfaces',
'unions' => 'App\\GraphQL\\Unions',
'scalars' => 'App\\GraphQL\\Scalars',
'directives' => ['App\\GraphQL\\Directives'],
'validators' => ['App\\GraphQL\\Validators'],
],
/*
|--------------------------------------------------------------------------
| Security
|--------------------------------------------------------------------------
|
| Control how Lighthouse handles security related query validation.
| Read more at https://webonyx.github.io/graphql-php/security/
|
*/
'security' => [
'max_query_complexity' => \GraphQL\Validator\Rules\QueryComplexity::DISABLED,
'max_query_depth' => \GraphQL\Validator\Rules\QueryDepth::DISABLED,
'disable_introspection' => \GraphQL\Validator\Rules\DisableIntrospection::DISABLED,
],
/*
|--------------------------------------------------------------------------
| Pagination
|--------------------------------------------------------------------------
|
| Set defaults for the pagination features within Lighthouse, such as
| the @paginate directive, or paginated relation directives.
|
*/
'pagination' => [
/*
* Allow clients to query paginated lists without specifying the amount of items.
* Setting this to `null` means clients have to explicitly ask for the count.
*/
'default_count' => null,
/*
* Limit the maximum amount of items that clients can request from paginated lists.
* Setting this to `null` means the count is unrestricted.
*/
'max_count' => null,
],
/*
|--------------------------------------------------------------------------
| Debug
|--------------------------------------------------------------------------
|
| Control the debug level as described in https://webonyx.github.io/graphql-php/error-handling/
| Debugging is only applied if the global Laravel debug config is set to true.
|
| When you set this value through an environment variable, use the following reference table:
| 0 => INCLUDE_NONE
| 1 => INCLUDE_DEBUG_MESSAGE
| 2 => INCLUDE_TRACE
| 3 => INCLUDE_TRACE | INCLUDE_DEBUG_MESSAGE
| 4 => RETHROW_INTERNAL_EXCEPTIONS
| 5 => RETHROW_INTERNAL_EXCEPTIONS | INCLUDE_DEBUG_MESSAGE
| 6 => RETHROW_INTERNAL_EXCEPTIONS | INCLUDE_TRACE
| 7 => RETHROW_INTERNAL_EXCEPTIONS | INCLUDE_TRACE | INCLUDE_DEBUG_MESSAGE
| 8 => RETHROW_UNSAFE_EXCEPTIONS
| 9 => RETHROW_UNSAFE_EXCEPTIONS | INCLUDE_DEBUG_MESSAGE
| 10 => RETHROW_UNSAFE_EXCEPTIONS | INCLUDE_TRACE
| 11 => RETHROW_UNSAFE_EXCEPTIONS | INCLUDE_TRACE | INCLUDE_DEBUG_MESSAGE
| 12 => RETHROW_UNSAFE_EXCEPTIONS | RETHROW_INTERNAL_EXCEPTIONS
| 13 => RETHROW_UNSAFE_EXCEPTIONS | RETHROW_INTERNAL_EXCEPTIONS | INCLUDE_DEBUG_MESSAGE
| 14 => RETHROW_UNSAFE_EXCEPTIONS | RETHROW_INTERNAL_EXCEPTIONS | INCLUDE_TRACE
| 15 => RETHROW_UNSAFE_EXCEPTIONS | RETHROW_INTERNAL_EXCEPTIONS | INCLUDE_TRACE | INCLUDE_DEBUG_MESSAGE
|
*/
'debug' => env('LIGHTHOUSE_DEBUG', \GraphQL\Error\DebugFlag::INCLUDE_DEBUG_MESSAGE | \GraphQL\Error\DebugFlag::INCLUDE_TRACE),
/*
|--------------------------------------------------------------------------
| Error Handlers
|--------------------------------------------------------------------------
|
| Register error handlers that receive the Errors that occur during execution
| and handle them. You may use this to log, filter or format the errors.
| The classes must implement \Nuwave\Lighthouse\Execution\ErrorHandler
|
*/
'error_handlers' => [
\Nuwave\Lighthouse\Execution\AuthenticationErrorHandler::class,
\Nuwave\Lighthouse\Execution\AuthorizationErrorHandler::class,
\Nuwave\Lighthouse\Execution\ValidationErrorHandler::class,
\Nuwave\Lighthouse\Execution\ExtensionErrorHandler::class,
\Nuwave\Lighthouse\Execution\ReportingErrorHandler::class,
],
/*
|--------------------------------------------------------------------------
| Field Middleware
|--------------------------------------------------------------------------
|
| Register global field middleware directives that wrap around every field.
| Execution happens in the defined order, before other field middleware.
| The classes must implement \Nuwave\Lighthouse\Support\Contracts\FieldMiddleware
|
*/
'field_middleware' => [
\Nuwave\Lighthouse\Schema\Directives\TrimDirective::class,
\Nuwave\Lighthouse\Schema\Directives\SanitizeDirective::class,
\Nuwave\Lighthouse\Validation\ValidateDirective::class,
\Nuwave\Lighthouse\Schema\Directives\TransformArgsDirective::class,
\Nuwave\Lighthouse\Schema\Directives\SpreadDirective::class,
\Nuwave\Lighthouse\Schema\Directives\RenameArgsDirective::class,
],
/*
|--------------------------------------------------------------------------
| Global ID
|--------------------------------------------------------------------------
|
| The name that is used for the global id field on the Node interface.
| When creating a Relay compliant server, this must be named "id".
|
*/
'global_id_field' => 'id',
/*
|--------------------------------------------------------------------------
| Persisted Queries
|--------------------------------------------------------------------------
|
| Lighthouse supports Automatic Persisted Queries (APQ), compatible with the
| [Apollo implementation](https://www.apollographql.com/docs/apollo-server/performance/apq).
| You may set this flag to either process or deny these queries.
|
*/
'persisted_queries' => true,
/*
|--------------------------------------------------------------------------
| Transactional Mutations
|--------------------------------------------------------------------------
|
| If set to true, built-in directives that mutate models will be
| wrapped in a transaction to ensure atomicity.
|
*/
'transactional_mutations' => true,
/*
|--------------------------------------------------------------------------
| Mass Assignment Protection
|--------------------------------------------------------------------------
|
| If set to true, mutations will use forceFill() over fill() when populating
| a model with arguments in mutation directives. Since GraphQL constrains
| allowed inputs by design, mass assignment protection is not needed.
|
*/
'force_fill' => true,
/*
|--------------------------------------------------------------------------
| Batchload Relations
|--------------------------------------------------------------------------
|
| If set to true, relations marked with directives like @hasMany or @belongsTo
| will be optimized by combining the queries through the BatchLoader.
|
*/
'batchload_relations' => true,
/*
|--------------------------------------------------------------------------
| Shortcut Foreign Key Selection
|--------------------------------------------------------------------------
|
| If set to true, Lighthouse will shortcut queries where the client selects only the
| foreign key pointing to a related model. Only works if the related model's primary
| key field is called exactly `id` for every type in your schema.
|
*/
'shortcut_foreign_key_selection' => false,
/*
|--------------------------------------------------------------------------
| Non-Null Pagination Results
|--------------------------------------------------------------------------
|
| If set to true, the generated result type of paginated lists will be marked
| as non-nullable. This is generally more convenient for clients, but will
| cause validation errors to bubble further up in the result.
|
| This setting will be removed and always behave as if it were true in v6.
|
*/
'non_null_pagination_results' => false,
/*
|--------------------------------------------------------------------------
| Unbox BenSampo\Enum\Enum instances
|--------------------------------------------------------------------------
|
| If set to true, Lighthouse will extract the internal $value from instances of
| BenSampo\Enum\Enum before passing it to ArgBuilderDirective::handleBuilder().
|
| This setting will be removed and always behave as if it were false in v6.
|
| It is only here to preserve compatibility, e.g. when expecting the internal
| value to be passed to a scope when using @scope, but not needed due to Laravel
| calling the Enum's __toString() method automagically when used in a query.
|
*/
'unbox_bensampo_enum_enum_instances' => true,
/*
|--------------------------------------------------------------------------
| GraphQL Subscriptions
|--------------------------------------------------------------------------
|
| Here you can define GraphQL subscription broadcaster and storage drivers
| as well their required configuration options.
|
*/
'subscriptions' => [
/*
* Determines if broadcasts should be queued by default.
*/
'queue_broadcasts' => env('LIGHTHOUSE_QUEUE_BROADCASTS', true),
/*
* Determines the queue to use for broadcasting queue jobs.
*/
'broadcasts_queue_name' => env('LIGHTHOUSE_BROADCASTS_QUEUE_NAME', null),
/*
* Default subscription storage.
*
* Any Laravel supported cache driver options are available here.
*/
'storage' => env('LIGHTHOUSE_SUBSCRIPTION_STORAGE', 'redis'),
/*
* Default subscription storage time to live in seconds.
*
* Indicates how long a subscription can be active before it's automatically removed from storage.
* Setting this to `null` means the subscriptions are stored forever. This may cause
* stale subscriptions to linger indefinitely in case cleanup fails for any reason.
*/
'storage_ttl' => env('LIGHTHOUSE_SUBSCRIPTION_STORAGE_TTL', null),
/*
* Default subscription broadcaster.
*/
'broadcaster' => env('LIGHTHOUSE_BROADCASTER', 'pusher'),
/*
* Subscription broadcasting drivers with config options.
*/
'broadcasters' => [
'log' => [
'driver' => 'log',
],
'pusher' => [
'driver' => 'pusher',
'routes' => \Nuwave\Lighthouse\Subscriptions\SubscriptionRouter::class . '@pusher',
'connection' => 'pusher',
],
'echo' => [
'driver' => 'echo',
'connection' => env('LIGHTHOUSE_SUBSCRIPTION_REDIS_CONNECTION', 'default'),
'routes' => \Nuwave\Lighthouse\Subscriptions\SubscriptionRouter::class . '@echoRoutes',
],
],
/*
* Controls the format of the extensions response.
* Allowed values: 1, 2
*/
'version' => env('LIGHTHOUSE_SUBSCRIPTION_VERSION', 1),
/*
* Should the subscriptions extension be excluded when the response has no subscription channel?
* This optimizes performance by sending less data, but clients must anticipate this appropriately.
* Will default to true in v6 and be removed in v7.
*/
'exclude_empty' => env('LIGHTHOUSE_SUBSCRIPTION_EXCLUDE_EMPTY', false),
],
/*
|--------------------------------------------------------------------------
| Defer
|--------------------------------------------------------------------------
|
| Configuration for the experimental @defer directive support.
|
*/
'defer' => [
/*
* Maximum number of nested fields that can be deferred in one query.
* Once reached, remaining fields will be resolved synchronously.
* 0 means unlimited.
*/
'max_nested_fields' => 0,
/*
* Maximum execution time for deferred queries in milliseconds.
* Once reached, remaining fields will be resolved synchronously.
* 0 means unlimited.
*/
'max_execution_ms' => 0,
],
/*
|--------------------------------------------------------------------------
| Apollo Federation
|--------------------------------------------------------------------------
|
| Lighthouse can act as a federated service: https://www.apollographql.com/docs/federation/federation-spec.
|
*/
'federation' => [
/*
* Location of resolver classes when resolving the `_entities` field.
*/
'entities_resolver_namespace' => 'App\\GraphQL\\Entities',
],
];
<?php
use Monolog\Handler\NullHandler;
use Monolog\Handler\StreamHandler;
use Monolog\Handler\SyslogUdpHandler;
return [
/*
|--------------------------------------------------------------------------
| Default Log Channel
|--------------------------------------------------------------------------
|
| This option defines the default log channel that gets used when writing
| messages to the logs. The name specified in this option should match
| one of the channels defined in the "channels" configuration array.
|
*/
'default' => env('LOG_CHANNEL', 'stack'),
/*
|--------------------------------------------------------------------------
| Deprecations Log Channel
|--------------------------------------------------------------------------
|
| This option controls the log channel that should be used to log warnings
| regarding deprecated PHP and library features. This allows you to get
| your application ready for upcoming major versions of dependencies.
|
*/
'deprecations' => env('LOG_DEPRECATIONS_CHANNEL', 'null'),
/*
|--------------------------------------------------------------------------
| Log Channels
|--------------------------------------------------------------------------
|
| Here you may configure the log channels for your application. Out of
| the box, Laravel uses the Monolog PHP logging library. This gives
| you a variety of powerful log handlers / formatters to utilize.
|
| Available Drivers: "single", "daily", "slack", "syslog",
| "errorlog", "monolog",
| "custom", "stack"
|
*/
'channels' => [
'stack' => [
'driver' => 'stack',
'channels' => ['single'],
'ignore_exceptions' => false,
],
'single' => [
'driver' => 'single',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'debug'),
],
'daily' => [
'driver' => 'daily',
'path' => storage_path('logs/laravel.log'),
'level' => env('LOG_LEVEL', 'debug'),
'days' => 14,
],
'slack' => [
'driver' => 'slack',
'url' => env('LOG_SLACK_WEBHOOK_URL'),
'username' => 'Laravel Log',
'emoji' => ':boom:',
'level' => env('LOG_LEVEL', 'critical'),
],
'papertrail' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => env('LOG_PAPERTRAIL_HANDLER', SyslogUdpHandler::class),
'handler_with' => [
'host' => env('PAPERTRAIL_URL'),
'port' => env('PAPERTRAIL_PORT'),
'connectionString' => 'tls://'.env('PAPERTRAIL_URL').':'.env('PAPERTRAIL_PORT'),
],
],
'stderr' => [
'driver' => 'monolog',
'level' => env('LOG_LEVEL', 'debug'),
'handler' => StreamHandler::class,
'formatter' => env('LOG_STDERR_FORMATTER'),
'with' => [
'stream' => 'php://stderr',
],
],
'syslog' => [
'driver' => 'syslog',
'level' => env('LOG_LEVEL', 'debug'),
],
'errorlog' => [
'driver' => 'errorlog',
'level' => env('LOG_LEVEL', 'debug'),
],
'null' => [
'driver' => 'monolog',
'handler' => NullHandler::class,
],
'emergency' => [
'path' => storage_path('logs/laravel.log'),
],
],
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Mailer
|--------------------------------------------------------------------------
|
| This option controls the default mailer that is used to send any email
| messages sent by your application. Alternative mailers may be setup
| and used as needed; however, this mailer will be used by default.
|
*/
'default' => env('MAIL_MAILER', 'smtp'),
/*
|--------------------------------------------------------------------------
| Mailer Configurations
|--------------------------------------------------------------------------
|
| Here you may configure all of the mailers used by your application plus
| their respective settings. Several examples have been configured for
| you and you are free to add your own as your application requires.
|
| Laravel supports a variety of mail "transport" drivers to be used while
| sending an e-mail. You will specify which one you are using for your
| mailers below. You are free to add additional mailers as required.
|
| Supported: "smtp", "sendmail", "mailgun", "ses",
| "postmark", "log", "array", "failover"
|
*/
'mailers' => [
'smtp' => [
'transport' => 'smtp',
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
],
'ses' => [
'transport' => 'ses',
],
'mailgun' => [
'transport' => 'mailgun',
],
'postmark' => [
'transport' => 'postmark',
],
'sendmail' => [
'transport' => 'sendmail',
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -t -i'),
],
'log' => [
'transport' => 'log',
'channel' => env('MAIL_LOG_CHANNEL'),
],
'array' => [
'transport' => 'array',
],
'failover' => [
'transport' => 'failover',
'mailers' => [
'smtp',
'log',
],
],
],
/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
| You may wish for all e-mails sent by your application to be sent from
| the same address. Here, you may specify a name and address that is
| used globally for all e-mails that are sent by your application.
|
*/
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/
'markdown' => [
'theme' => 'default',
'paths' => [
resource_path('views/vendor/mail'),
],
],
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Queue Connection Name
|--------------------------------------------------------------------------
|
| Laravel's queue API supports an assortment of back-ends via a single
| API, giving you convenient access to each back-end using the same
| syntax for every one. Here you may define a default connection.
|
*/
'default' => env('QUEUE_CONNECTION', 'sync'),
/*
|--------------------------------------------------------------------------
| Queue Connections
|--------------------------------------------------------------------------
|
| Here you may configure the connection information for each server that
| is used by your application. A default configuration has been added
| for each back-end shipped with Laravel. You are free to add more.
|
| Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
|
*/
'connections' => [
'sync' => [
'driver' => 'sync',
],
'database' => [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
'retry_after' => 90,
'after_commit' => false,
],
'beanstalkd' => [
'driver' => 'beanstalkd',
'host' => 'localhost',
'queue' => 'default',
'retry_after' => 90,
'block_for' => 0,
'after_commit' => false,
],
'sqs' => [
'driver' => 'sqs',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
'queue' => env('SQS_QUEUE', 'default'),
'suffix' => env('SQS_SUFFIX'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'after_commit' => false,
],
'redis' => [
'driver' => 'redis',
'connection' => 'default',
'queue' => env('REDIS_QUEUE', 'default'),
'retry_after' => 90,
'block_for' => null,
'after_commit' => false,
],
],
/*
|--------------------------------------------------------------------------
| Failed Queue Jobs
|--------------------------------------------------------------------------
|
| These options configure the behavior of failed queue job logging so you
| can control which database and table are used to store the jobs that
| have failed. You may change them to any database / table you wish.
|
*/
'failed' => [
'driver' => env('QUEUE_FAILED_DRIVER', 'database-uuids'),
'database' => env('DB_CONNECTION', 'mysql'),
'table' => 'failed_jobs',
],
];
<?php
use Laravel\Sanctum\Sanctum;
return [
/*
|--------------------------------------------------------------------------
| Stateful Domains
|--------------------------------------------------------------------------
|
| Requests from the following domains / hosts will receive stateful API
| authentication cookies. Typically, these should include your local
| and production domains which access your API via a frontend SPA.
|
*/
'stateful' => explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf(
'%s%s',
'localhost,localhost:3000,127.0.0.1,127.0.0.1:8000,::1',
Sanctum::currentApplicationUrlWithPort()
))),
/*
|--------------------------------------------------------------------------
| Sanctum Guards
|--------------------------------------------------------------------------
|
| This array contains the authentication guards that will be checked when
| Sanctum is trying to authenticate a request. If none of these guards
| are able to authenticate the request, Sanctum will use the bearer
| token that's present on an incoming request for authentication.
|
*/
'guard' => ['web'],
/*
|--------------------------------------------------------------------------
| Expiration Minutes
|--------------------------------------------------------------------------
|
| This value controls the number of minutes until an issued token will be
| considered expired. If this value is null, personal access tokens do
| not expire. This won't tweak the lifetime of first-party sessions.
|
*/
'expiration' => null,
/*
|--------------------------------------------------------------------------
| Sanctum Middleware
|--------------------------------------------------------------------------
|
| When authenticating your first-party SPA with Sanctum you may need to
| customize some of the middleware Sanctum uses while processing the
| request. You may change the middleware listed below as required.
|
*/
'middleware' => [
'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class,
'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class,
],
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Mailgun, Postmark, AWS and more. This file provides the de facto
| location for this type of information, allowing packages to have
| a conventional file to locate the various service credentials.
|
*/
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
'scheme' => 'https',
],
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
],
'ses' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
];
<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Session Driver
|--------------------------------------------------------------------------
|
| This option controls the default session "driver" that will be used on
| requests. By default, we will use the lightweight native driver but
| you may specify any of the other wonderful drivers provided here.
|
| Supported: "file", "cookie", "database", "apc",
| "memcached", "redis", "dynamodb", "array"
|
*/
'driver' => env('SESSION_DRIVER', 'file'),
/*
|--------------------------------------------------------------------------
| Session Lifetime
|--------------------------------------------------------------------------
|
| Here you may specify the number of minutes that you wish the session
| to be allowed to remain idle before it expires. If you want them
| to immediately expire on the browser closing, set that option.
|
*/
'lifetime' => env('SESSION_LIFETIME', 120),
'expire_on_close' => false,
/*
|--------------------------------------------------------------------------
| Session Encryption
|--------------------------------------------------------------------------
|
| This option allows you to easily specify that all of your session data
| should be encrypted before it is stored. All encryption will be run
| automatically by Laravel and you can use the Session like normal.
|
*/
'encrypt' => false,
/*
|--------------------------------------------------------------------------
| Session File Location
|--------------------------------------------------------------------------
|
| When using the native session driver, we need a location where session
| files may be stored. A default has been set for you but a different
| location may be specified. This is only needed for file sessions.
|
*/
'files' => storage_path('framework/sessions'),
/*
|--------------------------------------------------------------------------
| Session Database Connection
|--------------------------------------------------------------------------
|
| When using the "database" or "redis" session drivers, you may specify a
| connection that should be used to manage these sessions. This should
| correspond to a connection in your database configuration options.
|
*/
'connection' => env('SESSION_CONNECTION'),
/*
|--------------------------------------------------------------------------
| Session Database Table
|--------------------------------------------------------------------------
|
| When using the "database" session driver, you may specify the table we
| should use to manage the sessions. Of course, a sensible default is
| provided for you; however, you are free to change this as needed.
|
*/
'table' => 'sessions',
/*
|--------------------------------------------------------------------------
| Session Cache Store
|--------------------------------------------------------------------------
|
| While using one of the framework's cache driven session backends you may
| list a cache store that should be used for these sessions. This value
| must match with one of the application's configured cache "stores".
|
| Affects: "apc", "dynamodb", "memcached", "redis"
|
*/
'store' => env('SESSION_STORE'),
/*
|--------------------------------------------------------------------------
| Session Sweeping Lottery
|--------------------------------------------------------------------------
|
| Some session drivers must manually sweep their storage location to get
| rid of old sessions from storage. Here are the chances that it will
| happen on a given request. By default, the odds are 2 out of 100.
|
*/
'lottery' => [2, 100],
/*
|--------------------------------------------------------------------------
| Session Cookie Name
|--------------------------------------------------------------------------
|
| Here you may change the name of the cookie used to identify a session
| instance by ID. The name specified here will get used every time a
| new session cookie is created by the framework for every driver.
|
*/
'cookie' => env(
'SESSION_COOKIE',
Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
),
/*
|--------------------------------------------------------------------------
| Session Cookie Path
|--------------------------------------------------------------------------
|
| The session cookie path determines the path for which the cookie will
| be regarded as available. Typically, this will be the root path of
| your application but you are free to change this when necessary.
|
*/
'path' => '/',
/*
|--------------------------------------------------------------------------
| Session Cookie Domain
|--------------------------------------------------------------------------
|
| Here you may change the domain of the cookie used to identify a session
| in your application. This will determine which domains the cookie is
| available to in your application. A sensible default has been set.
|
*/
'domain' => env('SESSION_DOMAIN'),
/*
|--------------------------------------------------------------------------
| HTTPS Only Cookies
|--------------------------------------------------------------------------
|
| By setting this option to true, session cookies will only be sent back
| to the server if the browser has a HTTPS connection. This will keep
| the cookie from being sent to you when it can't be done securely.
|
*/
'secure' => env('SESSION_SECURE_COOKIE'),
/*
|--------------------------------------------------------------------------
| HTTP Access Only
|--------------------------------------------------------------------------
|
| Setting this value to true will prevent JavaScript from accessing the
| value of the cookie and the cookie will only be accessible through
| the HTTP protocol. You are free to modify this option if needed.
|
*/
'http_only' => true,
/*
|--------------------------------------------------------------------------
| Same-Site Cookies
|--------------------------------------------------------------------------
|
| This option determines how your cookies behave when cross-site requests
| take place, and can be used to mitigate CSRF attacks. By default, we
| will set this value to "lax" since this is a secure default value.
|
| Supported: "lax", "strict", "none", null
|
*/
'same_site' => 'lax',
];
<?php
return [
/*
|--------------------------------------------------------------------------
| View Storage Paths
|--------------------------------------------------------------------------
|
| Most templating systems load templates from disk. Here you may specify
| an array of paths that should be checked for your views. Of course
| the usual Laravel view path has already been registered for you.
|
*/
'paths' => [
resource_path('views'),
],
/*
|--------------------------------------------------------------------------
| Compiled View Path
|--------------------------------------------------------------------------
|
| This option determines where all the compiled Blade templates will be
| stored for your application. Typically, this is within the storage
| directory. However, as usual, you are free to change this value.
|
*/
'compiled' => env(
'VIEW_COMPILED_PATH',
realpath(storage_path('framework/views'))
),
];
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Str;
/**
* @extends \Illuminate\Database\Eloquent\Factories\Factory<\App\Models\User>
*/
class UserFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array<string, mixed>
*/
public function definition()
{
return [
'name' => $this->faker->name(),
'email' => $this->faker->unique()->safeEmail(),
'email_verified_at' => now(),
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
'remember_token' => Str::random(10),
];
}
/**
* Indicate that the model's email address should be unverified.
*
* @return static
*/
public function unverified()
{
return $this->state(function (array $attributes) {
return [
'email_verified_at' => null,
];
});
}
}
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
};
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('password_resets', function (Blueprint $table) {
$table->string('email')->index();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('password_resets');
}
};
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('failed_jobs', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->text('connection');
$table->text('queue');
$table->longText('payload');
$table->longText('exception');
$table->timestamp('failed_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('failed_jobs');
}
};
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('personal_access_tokens', function (Blueprint $table) {
$table->id();
$table->morphs('tokenable');
$table->string('name');
$table->string('token', 64)->unique();
$table->text('abilities')->nullable();
$table->timestamp('last_used_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('personal_access_tokens');
}
};
<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
// \App\Models\User::factory(10)->create();
}
}
type Mutation{
login(email : String! password : String!): String!
}
type CustomCategory{
cc_id : ID!
cc_name: String!
cc_parent_id: Int!
group: Group! @belongsTo
cc_active: String!
cc_created_on: DateTime!
}
extend type Query {
customCategories : [CustomCategory!]! @all(scopes : ["active"])
customCategory : CustomCategory! @find(scopes : ["active"])
}
input inputCustomCategory{
cc_id : ID! @rules(apply : ["required"])
cc_name: String! @rules(apply : ["required"])
cc_parent_id: Int! @rules(apply : ["required"])
cc_grp_id: Int! @rules(apply : ["required", "exists:group,grp_id"])
cc_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createCustomCategory(input : inputCustomCategory! @spread) : CustomCategory @create
updateCustomCategory(
id : ID! @rename(attribute: "cc_id") input : inputCustomCategory! @spread
) : CustomCategory @update
deleteCustomCategory(id : ID! @rename(attribute: "cc_id")) : CustomCategory @softDeletes
}
\ No newline at end of file
type LayerCategory {
lc_id : ID!
lc_name: String!
lc_parent: Int!
lc_order: Int!
lc_active: String!
lc_created_on: DateTime!
}
extend type Query {
layerCategories : [LayerCategory!]! @all(scopes : ["active"])
layerCategory : LayerCategory @find(scopes : ["active"])
}
input InputLayerCategory{
lc_name: String! @rules(apply : ["required", "unique:layer_category,lc_name"])
lc_parent: Int! @rules(apply : ["required", "exists:layer_category,lc_id"])
lc_order: Int! @rules(apply : ["required"])
lc_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createLayerCategory(input : InputLayerCategory! @spread) : LayerCategory @create
updateLayerCategory(
id : ID! @rename(attribute: "lc_id") input : InputLayerCategory! @spread
) : LayerCategory @update
}
type LayerDetail{
ld_id : ID!
layer : Layers! @hasOne
ld_url_id: Int!
service : Services! @belongsTo
ld_title_field: String!
ld_out_field: [String]!
ld_query_field: String!
typeArea: TypeArea! @belongsTo
ld_distribution: String!
ld_uom: String!
ld_analysis_field: String!
ld_analysis_label:String!
ld_statistic_type:String!
ld_field_type:String!
ld_analysis:String!
ld_active:String!
ld_created_on: DateTime
}
extend type Query {
layerDetails : [LayerDetail!]! @all(scopes : ["active"])
layerDetail : LayerDetail @find(scopes : ["active"])
}
input InputLayerDetail{
ld_id : ID!
ld_ly_id: Int! @rules(apply : ["required"])
ld_url_id: Int! @rules(apply : ["required"])
ld_sv_id : Int! @rules(apply : ["required", "exists:services,sv_id"])
ld_title_field: String! @rules(apply : ["required"])
ld_out_field: [String]! @rules(apply : ["required"])
ld_query_field: String! @rules(apply : ["required"])
ld_ta_id: Int! @rules(apply : ["required", "exists:type_area,ta_id"])
ld_distribution: String! @rules(apply : ["required"])
ld_uom: String! @rules(apply : ["required"])
ld_analysis_field: String! @rules(apply : ["required"])
ld_analysis_label:String! @rules(apply : ["required"])
ld_statistic_type:String! @rules(apply : ["required"])
ld_field_type:String! @rules(apply : ["required"])
ld_analysis:String! @rules(apply : ["required"])
ld_active:String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createLayerDetail(input : InputLayerCategory! @spread) : LayerCategory @create
updateLayerDetail(
id : ID! @rename(attribute: "ld_id") input : InputLayerCategory! @spread
) : LayerCategory @update
}
\ No newline at end of file
type LayerFilterDetail{
lfd_id: ID!
lfd_attributes: [String]!
lfd_geometry: [String]!
lfd_created_on: DateTime!
layer_filter : LayerFilter! @belongsTo
}
extend type LayerFilterDetail {
layerFilterDetails : [LayerFilterDetail!]! @all
layerFilterDetail(lfd_id: ID! @eq) : LayerFilterDetail! @find
}
input InputLayerFilterDetail{
lfd_attributes: [String]! @rules(apply : ["required"])
lfd_geometry: [String]! @rules(apply : ["required"])
lfd_layer_filter_id : Int! @rules(apply : ["required", "exists:layer_filter,lf_id"])
}
extend type Mutation {
createLayerFilterDetail(input : InputLayerFilterDetail! @spread) : LayerFilterDetail @create
updateLayerFilterDetail(
id : ID! @rename(attribute: "lfd_id") input : InputLayerFilterDetail! @spread
) : LayerFilterDetail @update
deleteLayerFilterDetail(id : ID! @rename(attribute: "lf_id")) : LayerFilterDetail @softDeletes
}
\ No newline at end of file
type LayerFilter{
lf_id: ID!
lf_name: String!
type: LayerType @hasOne
typeArea: TypeArea @hasOne
user: User! @belongsTo
details : LayerFilter! @hasMany
lf_properties: String!
lf_source: String!
lf_out_fields: [String]!
lf_file_hash_name: String!
lf_active: String!
lf_created_on: DateTime!
}
input InputLayerFilter{
lf_name: String! @rules(apply : ["required"])
lf_lt_id: Int! @rules(apply : ["required", "exists:layer_type,lt_id"])
lf_ta_id: Int! @rules(apply : ["required", "exists:type_area,ta_id"])
lf_us_id: Int! @rules(apply : ["required", "exists:user,us_id"])
lf_properties: [String]! @rules(apply : ["required"])
lf_source: String! @rules(apply : ["required"])
lf_out_fields: [String]! @rules(apply : ["required"])
lf_file_hash_name: String! @rules(apply : ["required"])
lf_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Query {
layerFilters : [LayerFilter!]! @all(scopes : ["active"])
layerFilter(lf_id: ID! @eq) : LayerFilter! @find(scopes : ["active"])
}
extend type Mutation {
createLayerFilter(input : InputLayerFilter! @spread) : LayerFilter @create
updateLayerFilter(
id : ID! @rename(attribute: "lf_id") input : InputLayerFilter! @spread
) : LayerFilter @update
deleteLayerFilter(id : ID! @rename(attribute: "lf_id")) : LayerFilter @softDeletes
}
\ No newline at end of file
type LayerMapping{
lm_id : ID!
lm_label: String!
layers: Layers!
customCategory: CustomCategory!
siteType: SiteType!
group: Group!
lm_active: String!
lm_created_on: DateTime!
}
extend type Query {
layerMappings : [LayerMapping!]! @all(scopes : ["active"])
layerMapping(id : ID! @rename(attribute: "lm_id")) : LayerMapping! @find(scopes : ["active"])
}
input inputLayerMapping{
lm_label: String! @rules(apply : ["required"])
lm_ly_id: Int! @rules(apply : ["required", "exists:layers,ly_id"])
lm_cc_id: Int! @rules(apply : ["required", "exists:custom_category,cc_id"])
lm_stp_id: Int! @rules(apply : ["required", "exists:site_type,stp_id"])
lm_grp_id: Int! @rules(apply : ["required", "exists:group,grp_id"])
lm_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createLayerMapping(input : inputLayerMapping! @spread) : LayerMapping @create
updateLayerMapping(
id : ID! @rename(attribute: "lm_id") input : inputLayerMapping! @spread
) : LayerMapping @update
deleteLayerMapping(id : ID! @rename(attribute: "lm_id")) : LayerMapping @softDeletes
}
\ No newline at end of file
type Layers{
ly_id : ID!
ly_name: String!
ly_description: String!
ly_viewer: String!
ly_custom_layer: String!
ly_active: String!
ly_created_on: DateTime!
category: LayerCategory! @belongsTo
type: LayerType! @belongsTo
details : LayerDetail! @hasOne
}
extend type Query {
layers : [Layers!]! @all(scopes : ["active"])
layer : Layers! @find(scopes : ["active"])
}
input InputLayers{
ly_name: String! @rules(apply : ["required"])
ly_description: String!
ly_viewer: String! @rules(apply : ["required", "IN:Y,N"])
ly_custom_layer: String! @rules(apply : ["required", "IN:Y,N"])
ly_lt_id : Int! @rules(apply : ["required", "exists:layer_type,lt_id"])
ly_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createLayers(input : InputLayers! @spread) : Layers @create
updateLayers(
id : ID! @rename(attribute: "ly_id") input : InputLayers! @spread
) : Layers @update
deleteLayers(id : ID! @rename(attribute: "ly_id")) : Layers @softDeletes
}
\ No newline at end of file
type UserLogData{
uld_id : ID!
uld_us_id: Int!
uld_action: String!
uld_data: String!
uld_active: String!
uld_created_on: DateTime!
uld_created_by: DateTime!
}
extend type Query {
logDatas: [UserLogData!]! @all(scopes : ["active"])
logData(uld_id : ID! @eq): UserLogData! @find(scopes : ["active"])
}
input InputUserLogData{
uld_us_id: Int! @rules(apply : ["required", "exists:user,us_id"])
uld_action: String! @rules(apply : ["required"])
uld_data: String! @rules(apply : ["required"])
uld_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createUserLogData(input : InputUserLogData! @spread) : UserLogData @create
updateUserLogData(
id : ID! @rename(attribute: "uld_id") input : InputUserLogData! @spread
) : UserLogData @update
deleteUserLogData(id : ID! @rename(attribute: "uld_id")) : UserLogData @softDeletes
}
type UserLogPassword{
ulp_id : ID!
ulp_us_id: Int!
ulp_password: String!
ulp_active: String!
ulp_created_on: DateTime!
}
extend type Query {
userLogPasswords : [UserLogPassword!]! @all(scopes : ["active"])
userLogPassword : UserLogPassword! @all(scopes : ["active"])
}
input InputUserLogPassword{
ulp_us_id: Int! @rules(apply : ["required", "exists:user,us_id"])
ulp_password: String! @hash @rules(apply : ["required"])
ulp_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createUserLogPassword(input : InputUserLogPassword! @spread) : UserLogPassword @create
updateUserLogPassword(
id : ID! @rename(attribute: "ulp_id") input : InputUserLogPassword! @spread
) : UserLogPassword @update
deleteUserLogPassword(id : ID! @rename(attribute: "ulp_id")) : UserLogPassword @softDeletes
}
\ No newline at end of file
type GroupType{
grt_id : ID!
grt_name: String!
grt_code: String!
grt_active: String!
grt_created_on: DateTime!
groups : [Group!]! @hasMany
}
extend type Query {
groupTypes : [GroupType!]! @all(scopes : ["active"])
groupType : GroupType @find(scopes : ["active"])
}
input InputGroupType{
grt_name: String! @rules(apply : ["required"])
grt_code: String! @rules(apply : ["required"])
grt_grp_id : Int! @rules(apply : ["required", "exists:group, grp_id"])
grt_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createGroupType(input : InputGroupType! @spread) : GroupType @create
updateGroupType(
id : ID! @rename(attribute: "grt_id") input : InputGroupType! @spread
) : GroupType @update
deleteGroupType(id : ID! @rename(attribute: "grt_id")) : GroupType @softDeletes
}
\ No newline at end of file
type LayerType{
lt_id : ID!
lt_name: String!
lt_active: String!
lt_created_on: DateTime!
}
extend type Query {
layerTypes : [LayerType!]! @all(scopes : ["active"])
layerType : LayerType @find(scopes : ["active"])
}
input InputLayerType{
lt_name: String! @rules(apply : ["required"])
lt_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createLayerType(input : InputLayerType! @spread) : LayerType @create
updateLayerType(
id : ID! @rename(attribute: "lt_id") input : InputLayerType! @spread
) : LayerType @update
deleteLayerType(id : ID! @rename(attribute: "lt_id")) : LayerType @softDeletes
}
\ No newline at end of file
type Services{
sv_id: ID!
sv_name: String!
sv_code: String!
sv_url: String!
sv_active: String!
sv_created_on: DateTime!
}
extend type Query {
services : [Services!]! @all(scopes : ["active"])
service : Services @find(scopes : ["active"])
}
input InputServices{
sv_id: ID! @rules(apply : ["required"])
sv_name: String! @rules(apply : ["required"])
sv_code: String! @rules(apply : ["required"])
sv_url: String! @rules(apply : ["required"])
sv_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createServices(input : InputServices! @spread) : Services @create
updateServices(
id : ID! @rename(attribute: "grt_id") input : InputServices! @spread
) : Services @update
deleteServices(id : ID! @rename(attribute: "grt_id")) : Services @softDeletes
}
\ No newline at end of file
type TypeArea{
ta_id : ID!
ta_name: String!
ta_code: String!
ta_active: String!
ta_created_on: DateTime!
}
extend type Query {
typeAreas : [TypeArea!]! @all(scopes : ["active"])
typeArea : TypeArea @find(scopes : ["active"])
}
input InputTypeArea{
ta_name: String! @rules(apply : ["required"])
ta_code: String! @rules(apply : ["required"])
ta_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createTypeArea(input : InputTypeArea! @spread) : TypeArea @create
updateTypeArea(
id : ID! @rename(attribute: "ta_id") input : InputTypeArea! @spread
) : TypeArea @update
deleteTypeArea(id : ID! @rename(attribute: "ta_id")) : TypeArea @softDeletes
}
\ No newline at end of file
scalar DateTime @scalar(class: "Nuwave\\Lighthouse\\Schema\\Types\\Scalars\\DateTime")
type Query @guard{
me : User! @auth
}
#import auth.graphql
#import subcriptions/*.graphql
#import master-data/*.graphql
#import layer-management/*.graphql
#import logs/*.graphql
type AnalysisAttributes{
aat_id: ID!
aat_attribute: [String]!
aat_active: String!
aat_created_on: DateTime!
}
extend type Query {
analysisAttibutes : [AnalysisAttributes!]! @all(scopes : ["active"])
analysisAttibute(aat_id : ID! @eq) : AnalysisAttributes! @find(scopes : ["active"])
}
input InputAnalysisAttributes{
ly_name: String! @rules(apply : ["required"])
ly_description: String!
ly_viewer: String! @rules(apply : ["required", "IN:Y,N"])
ly_custom_layer: String! @rules(apply : ["required", "IN:Y,N"])
ly_lt_id : Int! @rules(apply : ["required", "exists:layer_type,lt_id"])
ly_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createAnalysisAttributes(input : InputAnalysisAttributes! @spread) : AnalysisAttributes @create
updateAnalysisAttributes(
id : ID! @rename(attribute: "aat_id") input : InputAnalysisAttributes! @spread
) : AnalysisAttributes @update
deleteAnalysisAttributes(id : ID! @rename(attribute: "aat_id")) : AnalysisAttributes @softDeletes
}
type BasketSizeGroup{
bsg_id : ID!
bsg_name: String!
group: Group! @belongsTo
bsg_active: String!
bsg_created_on: DateTime!
}
extend type Query {
basketSizeGroups : [BasketSizeGroup!]! @all(scopes : ["active"])
basketSizeGroup(bsg_id: ID! @eq) : BasketSizeGroup! @find(scopes : ["active"])
}
input InputBasketSizeGroup{
bsg_name: String! @rules(apply : ["required"])
bsg_grp_id: Int! @rules(apply : ["required", "exists:group,grp_id"])
bsg_active: String! @rules(apply : ["required", "IN:Y,N"])
bsg_created_on: DateTime! @rules(apply : ["required"])
}
extend type Mutation {
createBasketSizeGroup(input : InputBasketSizeGroup! @spread) : BasketSizeGroup @create
updateBasketSizeGroup(
id : ID! @rename(attribute: "bsg_id") input : InputBasketSizeGroup! @spread
) : BasketSizeGroup @update
deleteBasketSizeGroup(id : ID! @rename(attribute: "bsg_id")) : BasketSizeGroup @softDeletes
}
\ No newline at end of file
type BasketSize{
bs_id : ID!
basketSizeGroup: BasketSizeGroup! @belongsTo
layer : Layers! @belongsTo
bs_period: DateTime!
bs_spending: Int!
bs_visit: Int!
bs_active: String!
bs_created_on: DateTime!
}
extend type Query {
basketSizes : [BasketSize!]! @all(scopes : ["active"])
basketSize(bs_id : ID! @eq) : BasketSize! @find(scopes : ["active"])
}
input InputBasketSize{
bs_bsg_id: Int! @rules(apply : ["required", "exists:basket_size_group,bsg_id"])
bs_ly_id : Int! @rules(apply : ["required", "exists:layers,ly_id"])
bs_period: DateTime! @rules(apply : ["required"])
bs_spending: Int! @rules(apply : ["required"])
bs_visit: Int! @rules(apply : ["required"])
bs_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createBasketSize(input : InputBasketSize! @spread) : BasketSize @create
updateBasketSize(
id : ID! @rename(attribute: "bs_id") input : InputBasketSize! @spread
) : BasketSize @update
deleteBasketSize(id : ID! @rename(attribute: "bs_id")) : BasketSize @softDeletes
}
type CannibalizationAnalysis{
cna_id: ID!
cna_name: String!
cannibalization: Cannibalization! @belongsTo
cna_segmentation: Int!
cna_start_distance: Int!
cna_end_distance: Int!
cna_active: String!
cna_created_on: DateTime!
}
extend type Query {
cannibalizationsAnalysis : [CannibalizationAnalysis!]! @all(scopes : ["active"])
cannibalizationAnalysis(cn_id : ID! @eq) : CannibalizationAnalysis! @find(scopes : ["active"])
}
input InputCannibalizationAnalysis{
cna_name: String! @rules(apply : ["required"])
cna_cn_id: Int! @rules(apply : ["required", "exists:cannibalization,cn_id"])
cna_segmentation: Int! @rules(apply : ["required"])
cna_start_distance: Int! @rules(apply : ["required"])
cna_end_distance: Int! @rules(apply : ["required"])
cna_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createCannibalizationAnalysis(input : InputCannibalizationAnalysis! @spread) : CannibalizationAnalysis @create
updateCannibalizationAnalysis(
id : ID! @rename(attribute: "cna_id") input : InputCannibalizationAnalysis! @spread
) : CannibalizationAnalysis @update
deleteCannibalizationAnalysis(id : ID! @rename(attribute: "cna_id")) : CannibalizationAnalysis @softDeletes
}
type CannibalizationCachmentPolygonVillage{
ccv_id: ID!
cannibalizationPolygon: CannibalizationPolygon! @belongsTo
ccv_catchment: [String]!
ccv_active: String!
ccv_created_on: DateTime!
}
extend type Query {
CannibalizationCachmentPolygons : [CannibalizationCachmentPolygonVillage!]! @all(scopes : ["active"])
CannibalizationCachmentPolygon : CannibalizationCachmentPolygonVillage! @find(scopes : ["active"])
}
input InputCannibalizationCachmentPolygonVillage{
ccv_cnp_id: Int! @rules(apply : ["required", "exists:cannibalization_polygon,cnp_id"])
ccv_catchment: [String]! @rules(apply : ["required"])
ccv_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createCannibalizationCachmentPolygonVillage(
input : InputCannibalizationCachmentPolygonVillage! @spread
) : CannibalizationCachmentPolygonVillage @create
updateCannibalizationCachmentPolygonVillage(
id : ID! @rename(attribute: "ccv_id") input : InputCannibalizationCachmentPolygonVillage! @spread
) : CannibalizationCachmentPolygonVillage @update
deleteCannibalizationCachmentPolygonVillage(
id : ID! @rename(attribute: "ccv_id")
) : CannibalizationCachmentPolygonVillage @softDeletes
}
type CannibalizationCatchmentPolygon{
ccp_id: ID!
cannibalizationPolygon: CannibalizationPolygon! @belongsTo
ccp_catchment: [String]!
ccp_active: String!
ccp_created_on: DateTime!
}
extend type Query {
cannibalizationCatchmentPolygons : [CannibalizationCatchmentPolygon!]! @all(scopes : ["active"])
cannibalizationCatchmentPolygon(ccp_id : ID! @eq) : CannibalizationCatchmentPolygon! @find(scopes : ["active"])
}
input InputCannibalizationCatchmentPolygon{
cna_name: String! @rules(apply : ["required"])
cna_cn_id: Int! @rules(apply : ["required", "exists:cannibalization,cn_id"])
cna_segmentation: Int! @rules(apply : ["required"])
cna_start_distance: Int! @rules(apply : ["required"])
cna_end_distance: Int! @rules(apply : ["required"])
cna_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createCannibalizationCatchmentPolygon(
input : InputCannibalizationCatchmentPolygon! @spread
) : CannibalizationCatchmentPolygon @create
updateCannibalizationCatchmentPolygon(
id : ID! @rename(attribute: "cna_id") input : InputCannibalizationCatchmentPolygon! @spread
) : CannibalizationCatchmentPolygon @update
deleteCannibalizationCatchmentPolygon(
id : ID! @rename(attribute: "cna_id")
) : CannibalizationCatchmentPolygon @softDeletes
}
type CannibalizationPolygonType{
cpt_id: ID!
cpt_name: String!
cpt_active: String!
cpt_created_on: DateTime!
}
extend type Query {
CannibalizationPolygonTypes : [CannibalizationPolygonType!]! @all(scopes : ["active"])
CannibalizationPolygonType : CannibalizationPolygonType! @find(scopes : ["active"])
}
input InputCannibalizationPolygonType{
cpt_name: String! @rules(apply : ["required"])
cpt_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createCannibalizationPolygonType(
input : InputCannibalizationPolygonType! @spread
) : CannibalizationPolygonType @create
updateCannibalizationPolygonType(
id : ID! @rename(attribute: "cpt_id") input : InputCannibalizationPolygonType! @spread
) : CannibalizationPolygonType @update
deleteCannibalizationPolygonType(id : ID! @rename(attribute: "cpt_id")) : CannibalizationPolygonType @softDeletes
}
type CannibalizationPolygon{
cnp_id: ID!
cnp_name: String!
canibalizationAnalysis: CannibalizationAnalysis! @belongsTo
cannibalizationPolygonType: CannibalizationPolygonType! @belongsTo
siteType: SiteType! @belongsTo
cnp_alias: String!
cnp_coordinates: [String]!
cnp_sr: String!
cnp_size: Int!
cnp_red: String!
cnp_green: String!
cnp_blue: String!
cnp_lost_area: Int!
cnp_active: String!
cnp_created_on: DateTime!
}
extend type Query {
CannibalizationPolygons : [CannibalizationPolygon!]! @all(scopes : ["active"])
CannibalizationPolygon : CannibalizationPolygon! @find(scopes : ["active"])
}
input InputCannibalizationPolygon{
cnp_name: String! @rules(apply : ["required"])
cnp_cn_id: Int! @rules(apply : ["required", "exists:cannibalization,cn_id"])
cnp_cpt_id: Int! @rules(apply : ["required", "exists:cannibalization_polygon_type,cpt_id"])
cnp_st_id: Int! @rules(apply : ["required", "exists:site_type,st_id"])
cnp_alias: String! @rules(apply : ["required"])
cnp_coordinates: [String]! @rules(apply : ["required"])
cnp_sr: String! @rules(apply : ["required"])
cnp_size: Int! @rules(apply : ["required"])
cnp_red: String! @rules(apply : ["required"])
cnp_green: String! @rules(apply : ["required"])
cnp_blue: String! @rules(apply : ["required"])
cnp_lost_area: Int! @rules(apply : ["required"])
cnp_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createCannibalizationPolygon(
input : InputCannibalizationPolygon! @spread
) : CannibalizationPolygon @create
updateCannibalizationPolygon(
id : ID! @rename(attribute: "cnp_id") input : InputCannibalizationPolygon! @spread
) : CannibalizationPolygon @update
deleteCannibalizationPolygon(id : ID! @rename(attribute: "cnp_id")) : CannibalizationPolygon @softDeletes
}
type CannibalizationSites{
cns_id: ID!
cannibalization: Cannibalization! @belongsTo
site: Sites! @belongsTo
cns_alias: String!
cns_active: String!
cns_created_on: DateTime!
}
extend type Query {
cannibalizationSites : [CannibalizationSites!]! @all(scopes : ["active"])
cannibalizationSite : CannibalizationSites! @find(scopes : ["active"])
}
input InputCannibalizationSites{
cns_cn_id: Int! @rules(apply : ["required", "exists:cannibalization,cn_id"])
cns_st_id: Int! @rules(apply : ["required", "exists:sites,st_id"])
cns_alias: String! @rules(apply : ["required"])
cns_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createCannibalizationSites(input : InputCannibalizationSites! @spread) : CannibalizationSites @create
updateCannibalizationSites(
id : ID! @rename(attribute: "cns_id") input : InputCannibalizationSites! @spread
) : CannibalizationSites @update
deleteCannibalizationSites(id : ID! @rename(attribute: "cns_id")) : CannibalizationSites @softDeletes
}
\ No newline at end of file
type Cannibalization {
cn_id: ID!
cn_name: String!
group: Group! @belongsTo
analysisAttribute: AnalysisAttributes! @belongsTo
cn_active: String!
cn_created_on: DateTime!
}
extend type Query {
cannibalizations : [Cannibalization!]! @all(scopes : ["active"])
cannibalization : Cannibalization! @find(scopes : ["active"])
}
input InputCannibalization{
cn_name: String! @rules(apply : ["required"])
cn_grp_id: Int! @rules(apply : ["required", "exists:group,grp_id"])
cn_aat_id: Int! @rules(apply : ["required", "exists:analysis_attributes,aat_id"])
cn_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createCannibalization(input : InputCannibalization! @spread) : Cannibalization @create
updateCannibalization(
id : ID! @rename(attribute: "cn_id") input : InputCannibalization! @spread
) : Cannibalization @update
deleteCannibalization(id : ID! @rename(attribute: "cn_id")) : Cannibalization @softDeletes
}
\ No newline at end of file
type DefaultAnalysisField{
daf_id : ID!
layer: Layers!
group: Group!
daf_jumlah_provinsi: String!
daf_jumlah_kabupaten: String!
daf_jumlah_kecamatan: String!
daf_jumlah_desa: String!
daf_density: String!
daf_area_name: String!
daf_size_area: String!
daf_active: String!
daf_created_on: DateTime!
}
extend type Query {
defaultAnalysisFields : [DefaultAnalysisField!]! @all(scopes : ["active"])
defaultAnalysisField(id: ID! @rename(attribute: "daf_id") @eq) : DefaultAnalysisField! @find(scopes : ["active"])
}
input InputDefaultAnalysisField{
daf_ly_id: Int! @rules(apply : ["required", "exists:layers,ly_id"])
daf_grp_id : Int! @rules(apply : ["required", "exists:group,grp_id"])
daf_jumlah_provinsi: String! @rules(apply : ["required", "IN:Y,N"])
daf_jumlah_kabupaten: String! @rules(apply : ["required", "IN:Y,N"])
daf_jumlah_kecamatan: String! @rules(apply : ["required", "IN:Y,N"])
daf_jumlah_desa: String! @rules(apply : ["required", "IN:Y,N"])
daf_density: String! @rules(apply : ["required"])
daf_area_name: String! @rules(apply : ["required"])
daf_size_area: String! @rules(apply : ["required"])
daf_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createDefaultAnalysisField(
input : InputDefaultAnalysisField! @spread
) : DefaultAnalysisField @create
updateDefaultAnalysisField(
id : ID! @rename(attribute: "daf_id") input : InputDefaultAnalysisField! @spread
) : DefaultAnalysisField @update
deleteDefaultAnalysisField(id : ID! @rename(attribute: "daf_id")) : DefaultAnalysisField @softDeletes
}
type SiteAnalysis{
sa_id : ID!
site: Sites!
sa_code: String!
sa_name: String!
sa_name_detail: String!
sa_coordinates: [String]!
sa_spatial_reference: String!
sa_attributes: [String]!
sa_polygon_length: Int!
sa_active: String!
sa_created_on: DateTime!
}
extend type Query {
sitesAnalysis : [SiteAnalysis!]! @all(scopes : ["active"])
siteAnalysis(id : ID! @rename(attribute: "sa_id")) : SiteAnalysis! @find(scopes : ["active"])
}
input InputSiteAnalysis{
sa_st_id: Int! @rules(apply : ["required", "exists:sites,st_id"])
sa_code: String! @rules(apply : ["required"])
sa_name: String! @rules(apply : ["required"])
sa_name_detail: String! @rules(apply : ["required"])
sa_coordinates: [String]! @rules(apply : ["required"])
sa_spatial_reference: String! @rules(apply : ["required"])
sa_attributes: [String]! @rules(apply : ["required"])
sa_polygon_length: Int! @rules(apply : ["required"])
sa_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createSiteAnalysis(
input : InputSiteAnalysis! @spread
) : SiteAnalysis @create
updateSiteAnalysis(
id : ID! @rename(attribute: "sa_id") input : InputSiteAnalysis! @spread
) : SiteAnalysis @update
deleteSiteAnalysis(id : ID! @rename(attribute: "sa_id")) : SiteAnalysis @softDeletes
}
type SiteType{
stp_id : ID!
stp_name: String!
stp_active: String!
stp_created_on : DateTime!
}
extend type Query {
siteTypes : [SiteType!]! @all(scopes : ["active"])
siteType(id: ID! @rename(attribute: "stp_id") @eq) : SiteType! @find(scopes : ["active"])
}
input InputSiteType{
stp_name: String! @rules(apply : ["required"])
stp_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createSiteType(
input : InputSiteType! @spread
) : SiteType @create
updateSiteType(
id : ID! @rename(attribute: "sa_id") input : InputSiteType! @spread
) : SiteType @update
deleteSiteType(id : ID! @rename(attribute: "sa_id")) : SiteType @softDeletes
}
type SitesAnalysisConfiguration{
sacf_id : ID!
sacf_layers_id: [String]!
sacf_penetration: Int!
sacf_sa_code: String!
basketSizeGroup: BasketSizeGroup!
sacf_is_template: String!
sacf_created_on: DateTime!
}
extend type Query {
sitesAnalysisConfigurations : [SitesAnalysisConfiguration!]! @all(scopes : ["active"])
sitesAnalysisConfiguration(
id : ID! @rename(attribute: "st_id") @eq
) : SitesAnalysisConfiguration! @find(scopes : ["active"])
}
input InputSitesAnalysisConfiguration{
sacf_layers_id: [String]! @rules(apply : ["required"])
sacf_penetration: Int! @rules(apply : ["required"])
sacf_sa_code: String! @rules(apply : ["required"])
sacf_bsg_id: Int! @rules(apply : ["required", "exists:basket_size_group,bsg_id"])
sacf_is_template: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createSitesAnalysisConfiguration(
input : InputSitesAnalysisConfiguration! @spread
) : SitesAnalysisConfiguration @create
updateSitesAnalysisConfiguration(
id : ID! @rename(attribute: "st_id") input : InputSitesAnalysisConfiguration! @spread
) : SitesAnalysisConfiguration @update
deleteSitesAnalysisConfiguration(id : ID! @rename(attribute: "st_id")) : SitesAnalysisConfiguration @softDeletes
}
type Sites {
st_id: ID!
st_name: String!
st_address: String!
st_description: String!
group: Group!
siteType: SiteType!
st_longitude: String!
st_latitude: String!
st_active: String!
st_created_on: DateTime!
}
extend type Query {
sites : [Sites!]! @all(scopes : ["active"])
site(id : ID! @rename(attribute: "st_id") @eq) : Sites! @find(scopes : ["active"])
}
input InputSites{
st_name: String! @rules(apply : ["required"])
st_address: String! @rules(apply : ["required"])
st_description: String!
st_grp_id: Int! @rules(apply : ["required", "exists:group,grp_id"])
st_stp_id: Int! @rules(apply : ["required", "exists:site_type,stp_id"])
st_longitude: String! @rules(apply : ["required"])
st_latitude: String! @rules(apply : ["required"])
st_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createSites(input : InputSites! @spread) : Sites @create
updateSites(id : ID! @rename(attribute: "st_id") input : InputSites! @spread) : Sites @update
deleteSites(id : ID! @rename(attribute: "st_id")) : Sites @softDeletes
}
type GroupLayers{
grl_id : ID!
group : Group! @belongsTo
layer : Layers! @hasOne
grl_active: String!
grl_created_on: DateTime!
}
extend type Query {
groupLayers : [GroupLayers!]! @all(scopes : ["active"]),
groupLayer(id : ID! @rename(attribute: "grl_id") @eq) : GroupLayers! @find(scopes : ["active"])
}
input InputGroupLayers{
grl_grp_id : Int! @rules(apply : ["required", "exists:groups, grp_id"])
grl_ly_id : Int! @rules(apply : ["required", "exists:layers, ly_id"])
grl_active: String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createGroupLayers(input : InputGroupLayers! @spread) : GroupLayers @create
updateGroupLayers(id : ID! @rename(attribute: "grl_id") input : InputGroupLayers! @spread) : GroupLayers @update
deleteGroupLayers(id : ID! @rename(attribute: "grl_id")) : GroupLayers @softDeletes
}
\ No newline at end of file
type GroupPlan{
gpp_id : ID!
plan: Plans! @belongsTo
group: Group! @belongsTo
gpp_number_of_user: Int!
gpp_number_of_site:Int!
gpp_discount:Int!
gpp_expired_on:DateTime!
gpp_active:String!
gpp_created_on:DateTime!
}
extend type Query {
groupPlans : [GroupPlan!]! @all(scopes : ["active"])
groupPlan(gpp_id : ID! @eq) : GroupPlan! @find(scopes : ["active"])
}
input InputGroupPlan{
gpp_pl_id : Int! @rules(apply : ["required", "exists:plans, pl_id"])
gpp_grp_id : Int! @rules(apply : ["required", "exists:groups, grp_id"])
gpp_number_of_user: Int! @rules(apply : ["required"])
gpp_number_of_site:Int! @rules(apply : ["required"])
gpp_discount:Int! @rules(apply : ["required"])
gpp_expired_on:DateTime! @rules(apply : ["required"])
gpp_active:String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createGroupPlan(input : InputGroupPlan! @spread) : GroupPlan @create
updateGroupPlan(id : ID! @rename(attribute: "gpp_id") input : InputGroupPlan! @spread) : GroupPlan @update
deleteGroupPlan(id : ID! @rename(attribute: "gpp_id")) : GroupPlan @softDeletes
}
\ No newline at end of file
type GroupService {
gsv_id : ID!
group : Group! @belongsTo
service: Services! @belongsTo
gsv_active: String!
gsv_created_on: DateTime!
}
extend type Query {
groupServices : [GroupService!]! @all(scopes : ["active"])
groupService(gsv_id : ID! @eq) : [GroupService!]! @find(scopes : ["active"])
}
\ No newline at end of file
type GroupTrial{
gtr_id: ID!
gtr_pl_id: GroupPlan! @belongsTo
gtr_us_id: User! @belongsTo
gtr_expired_on: DateTime!
gtr_active: String!
gtr_created_on: DateTime!
}
extend type Query {
groupTrials : [GroupTrial!]! @all(scopes : ["active"])
groupTrial(gtr_id : ID! @eq) : GroupTrial! @find(scopes : ["active"])
}
\ No newline at end of file
type Group {
grp_id: ID!
grp_name: String!
grp_created_on: String!
grp_updated_on: String!
users : [User!]! @hasMany
type : GroupType! @belongsTo
groupLayers : GroupLayers! @hasMany
grp_active : String!
}
extend type Query {
groups : [Group!]! @all(scopes : ["active"])
group(id: ID! @rename(attribute: "grp_id") @eq): Group @find(scopes : ["active"])
}
input InputGroup{
grp_name: String! @rules(apply : ["required"])
grp_grt_id : Int! @rules(apply : ["required", "exists:groups_type, grt_id"])
grp_active : String! @rules(apply : ["required", "IN:Y,N"])
}
extend type Mutation {
createGroup(input : InputGroup! @spread) : Group @create
updateGroup(id : ID! @rename(attribute: "grp_id") input : InputGroup! @spread) : Group @update
deleteGroup(id : ID! @rename(attribute: "grp_id")) : Group @softDeletes
}
\ No newline at end of file
type Plans{
pl_id: ID!
pl_name: String!
pl_number_of_user: Int!
pl_number_of_site: Int!
pl_price: Int!
pl_min_period: DateTime!
pl_active: String!
pl_created_on: DateTime!
}
extend type Query {
plans : [Plans!]! @all(scopes : ["active"])
plan(pl_id : ID! @eq) : Plans @find(scopes : ["active"])
}
\ No newline at end of file
type UserRoles {
ur_id : ID!
ur_name: String!
ur_code: String!
ur_active: String!
ur_created_on: DateTime!
ur_created_by: Int!
user : User @belongsTo
}
extend type Query {
roles: [UserRoles!]! @all(scopes : ["active"])
role(ur_id : ID! @eq): UserRoles @find(scopes : ["active"])
}
\ No newline at end of file
type UserTokens {
ut_id : ID!
ut_token: String!
ut_type: String!
ut_client_ip: String!
ut_client_agent: String!
ut_us_id: Int!
ut_remember: Boolean!
ut_active: String!
ut_created_on: DateTime!
ut_expired_on: DateTime!
ut_deleted_on: DateTime!
}
type User {
us_id: ID!
us_name: String!
us_email: String!
us_created_on: String!
us_updated_on: String!
us_grp_id: Int!
role : UserRoles @hasOne
group : Group @belongsTo
}
extend type Query {
users: [User]! @all(scopes : ["active"])
user(us_id: ID! @rename(attribute: "us_id") @eq): User @find(scopes : ["active"])
}
input CreateUserInput{
us_name : String! @rules(apply : ["required"])
us_grp_id : Int! @rules(apply : ["required", "exists:groups,grp_id"])
us_email : String! @rules(apply : ["required", "email"])
us_password : String! @hash @rules(apply : ["required"])
us_ur_id : Int! @rules(apply : ["required", "exists:user_roles,bsg_id"])
}
extend type Mutation {
createUser(input : CreateUserInput! @spread): User @create
updateUser(
id : ID! @rename(attribute: "st_id") input : InputSitesAnalysisConfiguration! @spread
) : SitesAnalysisConfiguration @update
deleteUser(id : ID! @rename(attribute: "st_id")) : SitesAnalysisConfiguration @softDeletes
}
\ No newline at end of file
{
"The :attribute must contain at least one letter.": "The :attribute must contain at least one letter.",
"The :attribute must contain at least one number.": "The :attribute must contain at least one number.",
"The :attribute must contain at least one symbol.": "The :attribute must contain at least one symbol.",
"The :attribute must contain at least one uppercase and one lowercase letter.": "The :attribute must contain at least one uppercase and one lowercase letter.",
"The given :attribute has appeared in a data leak. Please choose a different :attribute.": "The given :attribute has appeared in a data leak. Please choose a different :attribute."
}
<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/
'failed' => 'These credentials do not match our records.',
'password' => 'The provided password is incorrect.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pagination links. You are free to change them to anything
| you want to customize your views to better match your application.
|
*/
'previous' => '&laquo; Previous',
'next' => 'Next &raquo;',
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are given by the password broker for a password update attempt
| has failed, such as for an invalid token or invalid new password.
|
*/
'reset' => 'Your password has been reset!',
'sent' => 'We have emailed your password reset link!',
'throttled' => 'Please wait before retrying.',
'token' => 'This password reset token is invalid.',
'user' => "We can't find a user with that email address.",
];
<?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => 'The :attribute must be accepted.',
'accepted_if' => 'The :attribute must be accepted when :other is :value.',
'active_url' => 'The :attribute is not a valid URL.',
'after' => 'The :attribute must be a date after :date.',
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
'alpha' => 'The :attribute must only contain letters.',
'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.',
'alpha_num' => 'The :attribute must only contain letters and numbers.',
'array' => 'The :attribute must be an array.',
'before' => 'The :attribute must be a date before :date.',
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
'between' => [
'array' => 'The :attribute must have between :min and :max items.',
'file' => 'The :attribute must be between :min and :max kilobytes.',
'numeric' => 'The :attribute must be between :min and :max.',
'string' => 'The :attribute must be between :min and :max characters.',
],
'boolean' => 'The :attribute field must be true or false.',
'confirmed' => 'The :attribute confirmation does not match.',
'current_password' => 'The password is incorrect.',
'date' => 'The :attribute is not a valid date.',
'date_equals' => 'The :attribute must be a date equal to :date.',
'date_format' => 'The :attribute does not match the format :format.',
'declined' => 'The :attribute must be declined.',
'declined_if' => 'The :attribute must be declined when :other is :value.',
'different' => 'The :attribute and :other must be different.',
'digits' => 'The :attribute must be :digits digits.',
'digits_between' => 'The :attribute must be between :min and :max digits.',
'dimensions' => 'The :attribute has invalid image dimensions.',
'distinct' => 'The :attribute field has a duplicate value.',
'email' => 'The :attribute must be a valid email address.',
'ends_with' => 'The :attribute must end with one of the following: :values.',
'enum' => 'The selected :attribute is invalid.',
'exists' => 'The selected :attribute is invalid.',
'file' => 'The :attribute must be a file.',
'filled' => 'The :attribute field must have a value.',
'gt' => [
'array' => 'The :attribute must have more than :value items.',
'file' => 'The :attribute must be greater than :value kilobytes.',
'numeric' => 'The :attribute must be greater than :value.',
'string' => 'The :attribute must be greater than :value characters.',
],
'gte' => [
'array' => 'The :attribute must have :value items or more.',
'file' => 'The :attribute must be greater than or equal to :value kilobytes.',
'numeric' => 'The :attribute must be greater than or equal to :value.',
'string' => 'The :attribute must be greater than or equal to :value characters.',
],
'image' => 'The :attribute must be an image.',
'in' => 'The selected :attribute is invalid.',
'in_array' => 'The :attribute field does not exist in :other.',
'integer' => 'The :attribute must be an integer.',
'ip' => 'The :attribute must be a valid IP address.',
'ipv4' => 'The :attribute must be a valid IPv4 address.',
'ipv6' => 'The :attribute must be a valid IPv6 address.',
'json' => 'The :attribute must be a valid JSON string.',
'lt' => [
'array' => 'The :attribute must have less than :value items.',
'file' => 'The :attribute must be less than :value kilobytes.',
'numeric' => 'The :attribute must be less than :value.',
'string' => 'The :attribute must be less than :value characters.',
],
'lte' => [
'array' => 'The :attribute must not have more than :value items.',
'file' => 'The :attribute must be less than or equal to :value kilobytes.',
'numeric' => 'The :attribute must be less than or equal to :value.',
'string' => 'The :attribute must be less than or equal to :value characters.',
],
'mac_address' => 'The :attribute must be a valid MAC address.',
'max' => [
'array' => 'The :attribute must not have more than :max items.',
'file' => 'The :attribute must not be greater than :max kilobytes.',
'numeric' => 'The :attribute must not be greater than :max.',
'string' => 'The :attribute must not be greater than :max characters.',
],
'mimes' => 'The :attribute must be a file of type: :values.',
'mimetypes' => 'The :attribute must be a file of type: :values.',
'min' => [
'array' => 'The :attribute must have at least :min items.',
'file' => 'The :attribute must be at least :min kilobytes.',
'numeric' => 'The :attribute must be at least :min.',
'string' => 'The :attribute must be at least :min characters.',
],
'multiple_of' => 'The :attribute must be a multiple of :value.',
'not_in' => 'The selected :attribute is invalid.',
'not_regex' => 'The :attribute format is invalid.',
'numeric' => 'The :attribute must be a number.',
'password' => 'The password is incorrect.',
'present' => 'The :attribute field must be present.',
'prohibited' => 'The :attribute field is prohibited.',
'prohibited_if' => 'The :attribute field is prohibited when :other is :value.',
'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.',
'prohibits' => 'The :attribute field prohibits :other from being present.',
'regex' => 'The :attribute format is invalid.',
'required' => 'The :attribute field is required.',
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
'required_if' => 'The :attribute field is required when :other is :value.',
'required_unless' => 'The :attribute field is required unless :other is in :values.',
'required_with' => 'The :attribute field is required when :values is present.',
'required_with_all' => 'The :attribute field is required when :values are present.',
'required_without' => 'The :attribute field is required when :values is not present.',
'required_without_all' => 'The :attribute field is required when none of :values are present.',
'same' => 'The :attribute and :other must match.',
'size' => [
'array' => 'The :attribute must contain :size items.',
'file' => 'The :attribute must be :size kilobytes.',
'numeric' => 'The :attribute must be :size.',
'string' => 'The :attribute must be :size characters.',
],
'starts_with' => 'The :attribute must start with one of the following: :values.',
'string' => 'The :attribute must be a string.',
'timezone' => 'The :attribute must be a valid timezone.',
'unique' => 'The :attribute has already been taken.',
'uploaded' => 'The :attribute failed to upload.',
'url' => 'The :attribute must be a valid URL.',
'uuid' => 'The :attribute must be a valid UUID.',
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention "attribute.rule" to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap our attribute placeholder
| with something more reader friendly such as "E-Mail Address" instead
| of "email". This simply helps us make our message more expressive.
|
*/
'attributes' => [],
];
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production"
},
"devDependencies": {
"axios": "^0.25",
"laravel-mix": "^6.0.6",
"lodash": "^4.17.19",
"postcss": "^8.1.14"
}
}
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./app</directory>
</include>
</coverage>
<php>
<env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/>
</php>
</phpunit>
# File generated by "php artisan lighthouse:ide-helper".
# Do not edit this file directly.
# This file should be ignored by git as it can be autogenerated.
"""
The `ID` scalar type represents a unique identifier, often used to
refetch an object or as key for a cache. The ID type appears in a JSON
response as a String; however, it is not intended to be human-readable.
When expected as an input type, any string (such as `"4"`) or integer
(such as `4`) input value will be accepted as an ID.
"""
scalar ID
"""
The `String` scalar type represents textual data, represented as UTF-8
character sequences. The String type is most often used by GraphQL to
represent free-form human-readable text.
"""
scalar String
"""
The `Int` scalar type represents non-fractional signed whole numeric
values. Int can represent values between -(2^31) and 2^31 - 1.
"""
scalar Int
"""A paginated list of User items."""
type UserPaginator {
"""Pagination information about the list of items."""
paginatorInfo: PaginatorInfo!
"""A list of User items."""
data: [User!]!
}
"""Information about pagination using a fully featured paginator."""
type PaginatorInfo {
"""Number of items in the current page."""
count: Int!
"""Index of the current page."""
currentPage: Int!
"""Index of the first item in the current page."""
firstItem: Int
"""Are there more pages after this one?"""
hasMorePages: Boolean!
"""Index of the last item in the current page."""
lastItem: Int
"""Index of the last available page."""
lastPage: Int!
"""Number of items per page."""
perPage: Int!
"""Number of total available items."""
total: Int!
}
"""The `Boolean` scalar type represents `true` or `false`."""
scalar Boolean
"""
The `Float` scalar type represents signed double-precision fractional
values as specified by
[IEEE 754](http://en.wikipedia.org/wiki/IEEE_floating_point).
"""
scalar Float
"""
A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all
available types and directives on the server, as well as the entry points for
query, mutation, and subscription operations.
"""
type __Schema {
"""A list of all types supported by this server."""
types: [__Type!]!
"""The type that query operations will be rooted at."""
queryType: __Type!
"""
If this server supports mutation, the type that mutation operations will be rooted at.
"""
mutationType: __Type
"""
If this server support subscription, the type that subscription operations will be rooted at.
"""
subscriptionType: __Type
"""A list of all directives supported by this server."""
directives: [__Directive!]!
}
"""
The fundamental unit of any GraphQL Schema is the type. There are many kinds of
types in GraphQL as represented by the `__TypeKind` enum.
Depending on the kind of a type, certain fields describe information about that
type. Scalar types provide no information beyond a name and description, while
Enum types provide their values. Object and Interface types provide the fields
they describe. Abstract types, Union and Interface, provide the Object types
possible at runtime. List and NonNull types compose other types.
"""
type __Type {
kind: __TypeKind!
name: String
description: String
fields(includeDeprecated: Boolean = false): [__Field!]
interfaces: [__Type!]
possibleTypes: [__Type!]
enumValues(includeDeprecated: Boolean = false): [__EnumValue!]
inputFields: [__InputValue!]
ofType: __Type
}
"""An enum describing what kind of type a given `__Type` is."""
enum __TypeKind {
"""Indicates this type is a scalar."""
SCALAR
"""
Indicates this type is an object. `fields` and `interfaces` are valid fields.
"""
OBJECT
"""
Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.
"""
INTERFACE
"""Indicates this type is a union. `possibleTypes` is a valid field."""
UNION
"""Indicates this type is an enum. `enumValues` is a valid field."""
ENUM
"""
Indicates this type is an input object. `inputFields` is a valid field.
"""
INPUT_OBJECT
"""Indicates this type is a list. `ofType` is a valid field."""
LIST
"""Indicates this type is a non-null. `ofType` is a valid field."""
NON_NULL
}
"""
Object and Interface types are described by a list of Fields, each of which has
a name, potentially a list of arguments, and a return type.
"""
type __Field {
name: String!
description: String
args: [__InputValue!]!
type: __Type!
isDeprecated: Boolean!
deprecationReason: String
}
"""
Arguments provided to Fields or Directives and the input fields of an
InputObject are represented as Input Values which describe their type and
optionally a default value.
"""
type __InputValue {
name: String!
description: String
type: __Type!
"""
A GraphQL-formatted string representing the default value for this input value.
"""
defaultValue: String
}
"""
One possible value for a given Enum. Enum values are unique values, not a
placeholder for a string or numeric value. However an Enum value is returned in
a JSON response as a string.
"""
type __EnumValue {
name: String!
description: String
isDeprecated: Boolean!
deprecationReason: String
}
"""
A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.
In some cases, you need to provide options to alter GraphQL's execution behavior
in ways field arguments will not suffice, such as conditionally including or
skipping a field. Directives provide this by describing additional information
to the executor.
"""
type __Directive {
name: String!
description: String
args: [__InputValue!]!
isRepeatable: Boolean!
locations: [__DirectiveLocation!]!
}
"""
A Directive can be adjacent to many parts of the GraphQL language, a
__DirectiveLocation describes one such possible adjacencies.
"""
enum __DirectiveLocation {
"""Location adjacent to a query operation."""
QUERY
"""Location adjacent to a mutation operation."""
MUTATION
"""Location adjacent to a subscription operation."""
SUBSCRIPTION
"""Location adjacent to a field."""
FIELD
"""Location adjacent to a fragment definition."""
FRAGMENT_DEFINITION
"""Location adjacent to a fragment spread."""
FRAGMENT_SPREAD
"""Location adjacent to an inline fragment."""
INLINE_FRAGMENT
"""Location adjacent to a variable definition."""
VARIABLE_DEFINITION
"""Location adjacent to a schema definition."""
SCHEMA
"""Location adjacent to a scalar definition."""
SCALAR
"""Location adjacent to an object type definition."""
OBJECT
"""Location adjacent to a field definition."""
FIELD_DEFINITION
"""Location adjacent to an argument definition."""
ARGUMENT_DEFINITION
"""Location adjacent to an interface definition."""
INTERFACE
"""Location adjacent to a union definition."""
UNION
"""Location adjacent to an enum definition."""
ENUM
"""Location adjacent to an enum value definition."""
ENUM_VALUE
"""Location adjacent to an input object type definition."""
INPUT_OBJECT
"""Location adjacent to an input object field definition."""
INPUT_FIELD_DEFINITION
}
"""Directions for ordering a list of records."""
enum SortOrder {
"""Sort records in ascending order."""
ASC
"""Sort records in descending order."""
DESC
}
"""
Aggregate functions when ordering by a relation without specifying a column.
"""
enum OrderByRelationAggregateFunction {
"""Amount of items."""
COUNT
}
"""
Aggregate functions when ordering by a relation that may specify a column.
"""
enum OrderByRelationWithColumnAggregateFunction {
"""Average."""
AVG
"""Minimum."""
MIN
"""Maximum."""
MAX
"""Sum."""
SUM
"""Amount of items."""
COUNT
}
"""Allows ordering a list of records."""
input OrderByClause {
"""The column that is used for ordering."""
column: String!
"""The direction that is used for ordering."""
order: SortOrder!
}
"""Information about pagination using a simple paginator."""
type SimplePaginatorInfo {
"""Number of items in the current page."""
count: Int!
"""Index of the current page."""
currentPage: Int!
"""Index of the first item in the current page."""
firstItem: Int
"""Index of the last item in the current page."""
lastItem: Int
"""Number of items per page."""
perPage: Int!
"""Are there more pages after this one?"""
hasMorePages: Boolean!
}
"""Information about pagination using a Relay style cursor connection."""
type PageInfo {
"""When paginating forwards, are there more items?"""
hasNextPage: Boolean!
"""When paginating backwards, are there more items?"""
hasPreviousPage: Boolean!
"""The cursor to continue paginating backwards."""
startCursor: String
"""The cursor to continue paginating forwards."""
endCursor: String
"""Total number of nodes in the paginated connection."""
total: Int!
"""Number of nodes in the current page."""
count: Int!
"""Index of the current page."""
currentPage: Int!
"""Index of the last available page."""
lastPage: Int!
}
"""
Specify if you want to include or exclude trashed results from a query.
"""
enum Trashed {
"""Only return trashed results."""
ONLY
"""Return both trashed and non-trashed results."""
WITH
"""Only return non-trashed results."""
WITHOUT
}
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Send Requests To Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
<?php
use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;
define('LARAVEL_START', microtime(true));
/*
|--------------------------------------------------------------------------
| Check If The Application Is Under Maintenance
|--------------------------------------------------------------------------
|
| If the application is in maintenance / demo mode via the "down" command
| we will load this file so that any pre-rendered content can be shown
| instead of starting the framework, which could cause an exception.
|
*/
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
require $maintenance;
}
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| this application. We just need to utilize it! We'll simply require it
| into the script here so we don't need to manually load our classes.
|
*/
require __DIR__.'/../vendor/autoload.php';
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/
$app = require_once __DIR__.'/../bootstrap/app.php';
$kernel = $app->make(Kernel::class);
$response = $kernel->handle(
$request = Request::capture()
)->send();
$kernel->terminate($request, $response);
User-agent: *
Disallow:
require('./bootstrap');
window._ = require('lodash');
/**
* We'll load the axios HTTP library which allows us to easily issue requests
* to our Laravel back-end. This library automatically handles sending the
* CSRF token as a header based on the value of the "XSRF" token cookie.
*/
window.axios = require('axios');
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
/**
* Echo exposes an expressive API for subscribing to channels and listening
* for events that are broadcast by Laravel. Echo and event broadcasting
* allows your team to easily build robust real-time web applications.
*/
// import Echo from 'laravel-echo';
// window.Pusher = require('pusher-js');
// window.Echo = new Echo({
// broadcaster: 'pusher',
// key: process.env.MIX_PUSHER_APP_KEY,
// cluster: process.env.MIX_PUSHER_APP_CLUSTER,
// forceTLS: true
// });
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
<!-- Styles -->
<style>
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}a{background-color:transparent}[hidden]{display:none}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}*,:after,:before{box-sizing:border-box;border:0 solid #e2e8f0}a{color:inherit;text-decoration:inherit}svg,video{display:block;vertical-align:middle}video{max-width:100%;height:auto}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity))}.border-gray-200{--border-opacity:1;border-color:#edf2f7;border-color:rgba(237,242,247,var(--border-opacity))}.border-t{border-top-width:1px}.flex{display:flex}.grid{display:grid}.hidden{display:none}.items-center{align-items:center}.justify-center{justify-content:center}.font-semibold{font-weight:600}.h-5{height:1.25rem}.h-8{height:2rem}.h-16{height:4rem}.text-sm{font-size:.875rem}.text-lg{font-size:1.125rem}.leading-7{line-height:1.75rem}.mx-auto{margin-left:auto;margin-right:auto}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.ml-2{margin-left:.5rem}.mt-4{margin-top:1rem}.ml-4{margin-left:1rem}.mt-8{margin-top:2rem}.ml-12{margin-left:3rem}.-mt-px{margin-top:-1px}.max-w-6xl{max-width:72rem}.min-h-screen{min-height:100vh}.overflow-hidden{overflow:hidden}.p-6{padding:1.5rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.pt-8{padding-top:2rem}.fixed{position:fixed}.relative{position:relative}.top-0{top:0}.right-0{right:0}.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.text-center{text-align:center}.text-gray-200{--text-opacity:1;color:#edf2f7;color:rgba(237,242,247,var(--text-opacity))}.text-gray-300{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.text-gray-400{--text-opacity:1;color:#cbd5e0;color:rgba(203,213,224,var(--text-opacity))}.text-gray-500{--text-opacity:1;color:#a0aec0;color:rgba(160,174,192,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#718096;color:rgba(113,128,150,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#4a5568;color:rgba(74,85,104,var(--text-opacity))}.text-gray-900{--text-opacity:1;color:#1a202c;color:rgba(26,32,44,var(--text-opacity))}.underline{text-decoration:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.w-5{width:1.25rem}.w-8{width:2rem}.w-auto{width:auto}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}@media (min-width:640px){.sm\:rounded-lg{border-radius:.5rem}.sm\:block{display:block}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-between{justify-content:space-between}.sm\:h-20{height:5rem}.sm\:ml-0{margin-left:0}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pt-0{padding-top:0}.sm\:text-left{text-align:left}.sm\:text-right{text-align:right}}@media (min-width:768px){.md\:border-t-0{border-top-width:0}.md\:border-l{border-left-width:1px}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.lg\:px-8{padding-left:2rem;padding-right:2rem}}@media (prefers-color-scheme:dark){.dark\:bg-gray-800{--bg-opacity:1;background-color:#2d3748;background-color:rgba(45,55,72,var(--bg-opacity))}.dark\:bg-gray-900{--bg-opacity:1;background-color:#1a202c;background-color:rgba(26,32,44,var(--bg-opacity))}.dark\:border-gray-700{--border-opacity:1;border-color:#4a5568;border-color:rgba(74,85,104,var(--border-opacity))}.dark\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.dark\:text-gray-400{--text-opacity:1;color:#cbd5e0;color:rgba(203,213,224,var(--text-opacity))}.dark\:text-gray-500{--tw-text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--tw-text-opacity))}}
</style>
<style>
body {
font-family: 'Nunito', sans-serif;
}
</style>
</head>
<body class="antialiased">
<div class="relative flex items-top justify-center min-h-screen bg-gray-100 dark:bg-gray-900 sm:items-center py-4 sm:pt-0">
@if (Route::has('login'))
<div class="hidden fixed top-0 right-0 px-6 py-4 sm:block">
@auth
<a href="{{ url('/home') }}" class="text-sm text-gray-700 dark:text-gray-500 underline">Home</a>
@else
<a href="{{ route('login') }}" class="text-sm text-gray-700 dark:text-gray-500 underline">Log in</a>
@if (Route::has('register'))
<a href="{{ route('register') }}" class="ml-4 text-sm text-gray-700 dark:text-gray-500 underline">Register</a>
@endif
@endauth
</div>
@endif
<div class="max-w-6xl mx-auto sm:px-6 lg:px-8">
<div class="flex justify-center pt-8 sm:justify-start sm:pt-0">
<svg viewBox="0 0 651 192" fill="none" xmlns="http://www.w3.org/2000/svg" class="h-16 w-auto text-gray-700 sm:h-20">
<g clip-path="url(#clip0)" fill="#EF3B2D">
<path d="M248.032 44.676h-16.466v100.23h47.394v-14.748h-30.928V44.676zM337.091 87.202c-2.101-3.341-5.083-5.965-8.949-7.875-3.865-1.909-7.756-2.864-11.669-2.864-5.062 0-9.69.931-13.89 2.792-4.201 1.861-7.804 4.417-10.811 7.661-3.007 3.246-5.347 6.993-7.016 11.239-1.672 4.249-2.506 8.713-2.506 13.389 0 4.774.834 9.26 2.506 13.459 1.669 4.202 4.009 7.925 7.016 11.169 3.007 3.246 6.609 5.799 10.811 7.66 4.199 1.861 8.828 2.792 13.89 2.792 3.913 0 7.804-.955 11.669-2.863 3.866-1.908 6.849-4.533 8.949-7.875v9.021h15.607V78.182h-15.607v9.02zm-1.431 32.503c-.955 2.578-2.291 4.821-4.009 6.73-1.719 1.91-3.795 3.437-6.229 4.582-2.435 1.146-5.133 1.718-8.091 1.718-2.96 0-5.633-.572-8.019-1.718-2.387-1.146-4.438-2.672-6.156-4.582-1.719-1.909-3.032-4.152-3.938-6.73-.909-2.577-1.36-5.298-1.36-8.161 0-2.864.451-5.585 1.36-8.162.905-2.577 2.219-4.819 3.938-6.729 1.718-1.908 3.77-3.437 6.156-4.582 2.386-1.146 5.059-1.718 8.019-1.718 2.958 0 5.656.572 8.091 1.718 2.434 1.146 4.51 2.674 6.229 4.582 1.718 1.91 3.054 4.152 4.009 6.729.953 2.577 1.432 5.298 1.432 8.162-.001 2.863-.479 5.584-1.432 8.161zM463.954 87.202c-2.101-3.341-5.083-5.965-8.949-7.875-3.865-1.909-7.756-2.864-11.669-2.864-5.062 0-9.69.931-13.89 2.792-4.201 1.861-7.804 4.417-10.811 7.661-3.007 3.246-5.347 6.993-7.016 11.239-1.672 4.249-2.506 8.713-2.506 13.389 0 4.774.834 9.26 2.506 13.459 1.669 4.202 4.009 7.925 7.016 11.169 3.007 3.246 6.609 5.799 10.811 7.66 4.199 1.861 8.828 2.792 13.89 2.792 3.913 0 7.804-.955 11.669-2.863 3.866-1.908 6.849-4.533 8.949-7.875v9.021h15.607V78.182h-15.607v9.02zm-1.432 32.503c-.955 2.578-2.291 4.821-4.009 6.73-1.719 1.91-3.795 3.437-6.229 4.582-2.435 1.146-5.133 1.718-8.091 1.718-2.96 0-5.633-.572-8.019-1.718-2.387-1.146-4.438-2.672-6.156-4.582-1.719-1.909-3.032-4.152-3.938-6.73-.909-2.577-1.36-5.298-1.36-8.161 0-2.864.451-5.585 1.36-8.162.905-2.577 2.219-4.819 3.938-6.729 1.718-1.908 3.77-3.437 6.156-4.582 2.386-1.146 5.059-1.718 8.019-1.718 2.958 0 5.656.572 8.091 1.718 2.434 1.146 4.51 2.674 6.229 4.582 1.718 1.91 3.054 4.152 4.009 6.729.953 2.577 1.432 5.298 1.432 8.162 0 2.863-.479 5.584-1.432 8.161zM650.772 44.676h-15.606v100.23h15.606V44.676zM365.013 144.906h15.607V93.538h26.776V78.182h-42.383v66.724zM542.133 78.182l-19.616 51.096-19.616-51.096h-15.808l25.617 66.724h19.614l25.617-66.724h-15.808zM591.98 76.466c-19.112 0-34.239 15.706-34.239 35.079 0 21.416 14.641 35.079 36.239 35.079 12.088 0 19.806-4.622 29.234-14.688l-10.544-8.158c-.006.008-7.958 10.449-19.832 10.449-13.802 0-19.612-11.127-19.612-16.884h51.777c2.72-22.043-11.772-40.877-33.023-40.877zm-18.713 29.28c.12-1.284 1.917-16.884 18.589-16.884 16.671 0 18.697 15.598 18.813 16.884h-37.402zM184.068 43.892c-.024-.088-.073-.165-.104-.25-.058-.157-.108-.316-.191-.46-.056-.097-.137-.176-.203-.265-.087-.117-.161-.242-.265-.345-.085-.086-.194-.148-.29-.223-.109-.085-.206-.182-.327-.252l-.002-.001-.002-.002-35.648-20.524a2.971 2.971 0 00-2.964 0l-35.647 20.522-.002.002-.002.001c-.121.07-.219.167-.327.252-.096.075-.205.138-.29.223-.103.103-.178.228-.265.345-.066.089-.147.169-.203.265-.083.144-.133.304-.191.46-.031.085-.08.162-.104.25-.067.249-.103.51-.103.776v38.979l-29.706 17.103V24.493a3 3 0 00-.103-.776c-.024-.088-.073-.165-.104-.25-.058-.157-.108-.316-.191-.46-.056-.097-.137-.176-.203-.265-.087-.117-.161-.242-.265-.345-.085-.086-.194-.148-.29-.223-.109-.085-.206-.182-.327-.252l-.002-.001-.002-.002L40.098 1.396a2.971 2.971 0 00-2.964 0L1.487 21.919l-.002.002-.002.001c-.121.07-.219.167-.327.252-.096.075-.205.138-.29.223-.103.103-.178.228-.265.345-.066.089-.147.169-.203.265-.083.144-.133.304-.191.46-.031.085-.08.162-.104.25-.067.249-.103.51-.103.776v122.09c0 1.063.568 2.044 1.489 2.575l71.293 41.045c.156.089.324.143.49.202.078.028.15.074.23.095a2.98 2.98 0 001.524 0c.069-.018.132-.059.2-.083.176-.061.354-.119.519-.214l71.293-41.045a2.971 2.971 0 001.489-2.575v-38.979l34.158-19.666a2.971 2.971 0 001.489-2.575V44.666a3.075 3.075 0 00-.106-.774zM74.255 143.167l-29.648-16.779 31.136-17.926.001-.001 34.164-19.669 29.674 17.084-21.772 12.428-43.555 24.863zm68.329-76.259v33.841l-12.475-7.182-17.231-9.92V49.806l12.475 7.182 17.231 9.92zm2.97-39.335l29.693 17.095-29.693 17.095-29.693-17.095 29.693-17.095zM54.06 114.089l-12.475 7.182V46.733l17.231-9.92 12.475-7.182v74.537l-17.231 9.921zM38.614 7.398l29.693 17.095-29.693 17.095L8.921 24.493 38.614 7.398zM5.938 29.632l12.475 7.182 17.231 9.92v79.676l.001.005-.001.006c0 .114.032.221.045.333.017.146.021.294.059.434l.002.007c.032.117.094.222.14.334.051.124.088.255.156.371a.036.036 0 00.004.009c.061.105.149.191.222.288.081.105.149.22.244.314l.008.01c.084.083.19.142.284.215.106.083.202.178.32.247l.013.005.011.008 34.139 19.321v34.175L5.939 144.867V29.632h-.001zm136.646 115.235l-65.352 37.625V148.31l48.399-27.628 16.953-9.677v33.862zm35.646-61.22l-29.706 17.102V66.908l17.231-9.92 12.475-7.182v33.841z"/>
</g>
</svg>
</div>
<div class="mt-8 bg-white dark:bg-gray-800 overflow-hidden shadow sm:rounded-lg">
<div class="grid grid-cols-1 md:grid-cols-2">
<div class="p-6">
<div class="flex items-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" class="w-8 h-8 text-gray-500"><path d="M12 6.253v13m0-13C10.832 5.477 9.246 5 7.5 5S4.168 5.477 3 6.253v13C4.168 18.477 5.754 18 7.5 18s3.332.477 4.5 1.253m0-13C13.168 5.477 14.754 5 16.5 5c1.747 0 3.332.477 4.5 1.253v13C19.832 18.477 18.247 18 16.5 18c-1.746 0-3.332.477-4.5 1.253"></path></svg>
<div class="ml-4 text-lg leading-7 font-semibold"><a href="https://laravel.com/docs" class="underline text-gray-900 dark:text-white">Documentation</a></div>
</div>
<div class="ml-12">
<div class="mt-2 text-gray-600 dark:text-gray-400 text-sm">
Laravel has wonderful, thorough documentation covering every aspect of the framework. Whether you are new to the framework or have previous experience with Laravel, we recommend reading all of the documentation from beginning to end.
</div>
</div>
</div>
<div class="p-6 border-t border-gray-200 dark:border-gray-700 md:border-t-0 md:border-l">
<div class="flex items-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" class="w-8 h-8 text-gray-500"><path d="M3 9a2 2 0 012-2h.93a2 2 0 001.664-.89l.812-1.22A2 2 0 0110.07 4h3.86a2 2 0 011.664.89l.812 1.22A2 2 0 0018.07 7H19a2 2 0 012 2v9a2 2 0 01-2 2H5a2 2 0 01-2-2V9z"></path><path d="M15 13a3 3 0 11-6 0 3 3 0 016 0z"></path></svg>
<div class="ml-4 text-lg leading-7 font-semibold"><a href="https://laracasts.com" class="underline text-gray-900 dark:text-white">Laracasts</a></div>
</div>
<div class="ml-12">
<div class="mt-2 text-gray-600 dark:text-gray-400 text-sm">
Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process.
</div>
</div>
</div>
<div class="p-6 border-t border-gray-200 dark:border-gray-700">
<div class="flex items-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" class="w-8 h-8 text-gray-500"><path d="M7 8h10M7 12h4m1 8l-4-4H5a2 2 0 01-2-2V6a2 2 0 012-2h14a2 2 0 012 2v8a2 2 0 01-2 2h-3l-4 4z"></path></svg>
<div class="ml-4 text-lg leading-7 font-semibold"><a href="https://laravel-news.com/" class="underline text-gray-900 dark:text-white">Laravel News</a></div>
</div>
<div class="ml-12">
<div class="mt-2 text-gray-600 dark:text-gray-400 text-sm">
Laravel News is a community driven portal and newsletter aggregating all of the latest and most important news in the Laravel ecosystem, including new package releases and tutorials.
</div>
</div>
</div>
<div class="p-6 border-t border-gray-200 dark:border-gray-700 md:border-l">
<div class="flex items-center">
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" class="w-8 h-8 text-gray-500"><path d="M3.055 11H5a2 2 0 012 2v1a2 2 0 002 2 2 2 0 012 2v2.945M8 3.935V5.5A2.5 2.5 0 0010.5 8h.5a2 2 0 012 2 2 2 0 104 0 2 2 0 012-2h1.064M15 20.488V18a2 2 0 012-2h3.064M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>
<div class="ml-4 text-lg leading-7 font-semibold text-gray-900 dark:text-white">Vibrant Ecosystem</div>
</div>
<div class="ml-12">
<div class="mt-2 text-gray-600 dark:text-gray-400 text-sm">
Laravel's robust library of first-party tools and libraries, such as <a href="https://forge.laravel.com" class="underline">Forge</a>, <a href="https://vapor.laravel.com" class="underline">Vapor</a>, <a href="https://nova.laravel.com" class="underline">Nova</a>, and <a href="https://envoyer.io" class="underline">Envoyer</a> help you take your projects to the next level. Pair them with powerful open source libraries like <a href="https://laravel.com/docs/billing" class="underline">Cashier</a>, <a href="https://laravel.com/docs/dusk" class="underline">Dusk</a>, <a href="https://laravel.com/docs/broadcasting" class="underline">Echo</a>, <a href="https://laravel.com/docs/horizon" class="underline">Horizon</a>, <a href="https://laravel.com/docs/sanctum" class="underline">Sanctum</a>, <a href="https://laravel.com/docs/telescope" class="underline">Telescope</a>, and more.
</div>
</div>
</div>
</div>
</div>
<div class="flex justify-center mt-4 sm:items-center sm:justify-between">
<div class="text-center text-sm text-gray-500 sm:text-left">
<div class="flex items-center">
<svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" stroke="currentColor" class="-mt-px w-5 h-5 text-gray-400">
<path d="M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z"></path>
</svg>
<a href="https://laravel.bigcartel.com" class="ml-1 underline">
Shop
</a>
<svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" class="ml-4 -mt-px w-5 h-5 text-gray-400">
<path d="M4.318 6.318a4.5 4.5 0 000 6.364L12 20.364l7.682-7.682a4.5 4.5 0 00-6.364-6.364L12 7.636l-1.318-1.318a4.5 4.5 0 00-6.364 0z"></path>
</svg>
<a href="https://github.com/sponsors/taylorotwell" class="ml-1 underline">
Sponsor
</a>
</div>
</div>
<div class="ml-4 text-center text-sm text-gray-500 sm:text-right sm:ml-0">
Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})
</div>
</div>
</div>
</div>
</body>
</html>
<?php
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/
Route::middleware('auth:sanctum')->get('/user', function (Request $request) {
return $request->user();
});
<?php
use Illuminate\Support\Facades\Broadcast;
/*
|--------------------------------------------------------------------------
| Broadcast Channels
|--------------------------------------------------------------------------
|
| Here you may register all of the event broadcasting channels that your
| application supports. The given channel authorization callbacks are
| used to check if an authenticated user can listen to the channel.
|
*/
Broadcast::channel('App.Models.User.{id}', function ($user, $id) {
return (int) $user->id === (int) $id;
});
<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
/*
|--------------------------------------------------------------------------
| Console Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of your Closure based console
| commands. Each Closure is bound to a command instance allowing a
| simple approach to interacting with each command's IO methods.
|
*/
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');
<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return view('welcome');
});
# File generated by "php artisan lighthouse:ide-helper".
# Do not edit this file directly.
# This file should be ignored by git as it can be autogenerated.
"""
Placeholder type for various directives such as `@orderBy`.
Will be replaced by a generated type during schema manipulation.
"""
scalar _
# Directive class: Nuwave\Lighthouse\Auth\AuthDirective
"""
Return the currently authenticated user as the result of a query.
"""
directive @auth(
"""
Specify which guard to use, e.g. "api".
When not defined, the default from `lighthouse.php` is used.
"""
guard: String
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Auth\CanDirective
"""
Check a Laravel Policy to ensure the current user is authorized to access a field.
When `injectArgs` and `args` are used together, the client given
arguments will be passed before the static args.
"""
directive @can(
"""
The ability to check permissions for.
"""
ability: String!
"""
Query for specific model instances to check the policy against, using arguments
with directives that add constraints to the query builder, such as `@eq`.
Mutually exclusive with `find`.
"""
query: Boolean = false
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
"""
model: String
"""
Pass along the client given input data as arguments to `Gate::check`.
"""
injectArgs: Boolean = false
"""
Statically defined arguments that are passed to `Gate::check`.
You may pass pass arbitrary GraphQL literals,
e.g.: [1, 2, 3] or { foo: "bar" }
"""
args: CanArgs
"""
If your policy checks against specific model instances, specify
the name of the field argument that contains its primary key(s).
You may pass the string in dot notation to use nested inputs.
Mutually exclusive with `search`.
"""
find: String
) on FIELD_DEFINITION
"""
Any constant literal value: https://graphql.github.io/graphql-spec/draft/#sec-Input-Values
"""
scalar CanArgs
# Directive class: Nuwave\Lighthouse\Auth\GuardDirective
"""
Run authentication through one or more guards.
This is run per field and may allow unauthenticated
users to still receive partial results.
Used upon an object, it applies to all fields within.
"""
directive @guard(
"""
Specify which guards to use, e.g. ["web"].
When not defined, the default from `lighthouse.php` is used.
"""
with: [String!]
) on FIELD_DEFINITION | OBJECT
# Directive class: Nuwave\Lighthouse\Auth\WhereAuthDirective
"""
Filter a type to only return instances owned by the current user.
"""
directive @whereAuth(
"""
Name of the relationship that links to the user model.
"""
relation: String!
"""
Specify which guard to use, e.g. "api".
When not defined, the default from `lighthouse.php` is used.
"""
guard: String
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\GlobalId\GlobalIdDirective
"""
Converts between IDs/types and global IDs.
When used upon a field, it encodes;
when used upon an argument, it decodes.
"""
directive @globalId(
"""
Decoding a global id produces a tuple of `$type` and `$id`.
This setting controls which of those is passed along.
"""
decode: GlobalIdDecode = ARRAY
) on FIELD_DEFINITION | INPUT_FIELD_DEFINITION | ARGUMENT_DEFINITION
"""
Options for the `decode` argument of `@globalId`.
"""
enum GlobalIdDecode {
"""
Return an array of `[$type, $id]`.
"""
ARRAY
"""
Return just `$type`.
"""
TYPE
"""
Return just `$id`.
"""
ID
}
# Directive class: Nuwave\Lighthouse\GlobalId\NodeDirective
"""
Register a type for Relay's global object identification.
When used without any arguments, Lighthouse will attempt
to resolve the type through a model with the same name.
"""
directive @node(
"""
Reference to a function that receives the decoded `id` and returns a result.
Consists of two parts: a class name and a method name, seperated by an `@` symbol.
If you pass only a class name, the method name defaults to `__invoke`.
Mutually exclusive with the `model` argument.
"""
resolver: String
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
Mutually exclusive with the `model` argument.
"""
model: String
) on OBJECT
# Directive class: Nuwave\Lighthouse\OrderBy\OrderByDirective
"""
Sort a result list by one or more given columns.
"""
directive @orderBy(
"""
Restrict the allowed column names to a well-defined list.
This improves introspection capabilities and security.
Mutually exclusive with the `columnsEnum` argument.
Only used when the directive is added on an argument.
"""
columns: [String!]
"""
Use an existing enumeration type to restrict the allowed columns to a predefined list.
This allowes you to re-use the same enum for multiple fields.
Mutually exclusive with the `columns` argument.
Only used when the directive is added on an argument.
"""
columnsEnum: String
"""
Allow clients to sort by aggregates on relations.
Only used when the directive is added on an argument.
"""
relations: [OrderByRelation!]
"""
The database column for which the order by clause will be applied on.
Only used when the directive is added on a field.
"""
column: String
"""
The direction of the order by clause.
Only used when the directive is added on a field.
"""
direction: OrderByDirection = ASC
) on ARGUMENT_DEFINITION | FIELD_DEFINITION
"""
Options for the `direction` argument on `@orderBy`.
"""
enum OrderByDirection {
"""
Sort in ascending order.
"""
ASC
"""
Sort in descending order.
"""
DESC
}
"""
Options for the `relations` argument on `@orderBy`.
"""
input OrderByRelation {
"""
TODO: description
"""
relation: String!
"""
Restrict the allowed column names to a well-defined list.
This improves introspection capabilities and security.
Mutually exclusive with the `columnsEnum` argument.
"""
columns: [String!]
"""
Use an existing enumeration type to restrict the allowed columns to a predefined list.
This allowes you to re-use the same enum for multiple fields.
Mutually exclusive with the `columns` argument.
"""
columnsEnum: String
}
# Directive class: Nuwave\Lighthouse\Pagination\PaginateDirective
"""
Query multiple model entries as a paginated list.
"""
directive @paginate(
"""
Which pagination style should be used.
"""
type: PaginateType = PAGINATOR
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
"""
model: String
"""
Point to a function that provides a Query Builder instance.
This replaces the use of a model.
"""
builder: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
"""
Allow clients to query paginated lists without specifying the amount of items.
Overrules the `pagination.default_count` setting from `lighthouse.php`.
"""
defaultCount: Int
"""
Limit the maximum amount of items that clients can request from paginated lists.
Overrules the `pagination.max_count` setting from `lighthouse.php`.
"""
maxCount: Int
) on FIELD_DEFINITION
"""
Options for the `type` argument of `@paginate`.
"""
enum PaginateType {
"""
Offset-based pagination, similar to the Laravel default.
"""
PAGINATOR
"""
Offset-based pagination like the Laravel "Simple Pagination", which does not count the total number of records.
"""
SIMPLE
"""
Cursor-based pagination, compatible with the Relay specification.
"""
CONNECTION
}
# Directive class: Nuwave\Lighthouse\Scout\SearchDirective
"""
Perform a full-text search by the given input value.
"""
directive @search(
"""
Specify a custom index to use for search.
"""
within: String
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\SoftDeletes\ForceDeleteDirective
"""
Permanently remove one or more soft deleted models by their ID.
The field must have a single non-null argument that may be a list.
"""
directive @forceDelete(
"""
DEPRECATED use @globalId, will be removed in v6
Set to `true` to use global ids for finding the model.
If set to `false`, regular non-global ids are used.
"""
globalId: Boolean = false
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
"""
model: String
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\SoftDeletes\RestoreDirective
"""
Un-delete one or more soft deleted models by their ID.
The field must have a single non-null argument that may be a list.
"""
directive @restore(
"""
DEPRECATED use @globalId, will be removed in v6
Set to `true` to use global ids for finding the model.
If set to `false`, regular non-global ids are used.
"""
globalId: Boolean = false
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
"""
model: String
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\SoftDeletes\SoftDeletesDirective
"""
Allows to filter if trashed elements should be fetched.
This manipulates the schema by adding the argument
`trashed: Trashed @trashed` to the field.
"""
directive @softDeletes on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\SoftDeletes\TrashedDirective
"""
Allows to filter if trashed elements should be fetched.
"""
directive @trashed on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Validation\RulesDirective
"""
Validate an argument using [Laravel validation](https://laravel.com/docs/validation).
"""
directive @rules(
"""
Specify the validation rules to apply to the field.
This can either be a reference to [Laravel's built-in validation rules](https://laravel.com/docs/validation#available-validation-rules),
or the fully qualified class name of a custom validation rule.
Rules that mutate the incoming arguments, such as `exclude_if`, are not supported
by Lighthouse. Use ArgTransformerDirectives or FieldMiddlewareDirectives instead.
"""
apply: [String!]!
"""
Specify a custom attribute name to use in your validation message.
"""
attribute: String
"""
Specify the messages to return if the validators fail.
"""
messages: [RulesMessage!]
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
"""
Input for the `messages` argument of `@rules`.
"""
input RulesMessage {
"""
Name of the rule, e.g. `"email"`.
"""
rule: String!
"""
Message to display if the rule fails, e.g. `"Must be a valid email"`.
"""
message: String!
}
# Directive class: Nuwave\Lighthouse\Validation\RulesForArrayDirective
"""
Run validation on an array itself, using [Laravel built-in validation](https://laravel.com/docs/validation).
"""
directive @rulesForArray(
"""
Specify the validation rules to apply to the field.
This can either be a reference to any of Laravel's built-in validation rules: https://laravel.com/docs/validation#available-validation-rules,
or the fully qualified class name of a custom validation rule.
"""
apply: [String!]!
"""
Specify a custom attribute name to use in your validation message.
"""
attribute: String
"""
Specify the messages to return if the validators fail.
"""
messages: [RulesForArrayMessage!]
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
"""
Input for the `messages` argument of `@rulesForArray`.
"""
input RulesForArrayMessage {
"""
Name of the rule, e.g. `"email"`.
"""
rule: String!
"""
Message to display if the rule fails, e.g. `"Must be a valid email"`.
"""
message: String!
}
# Directive class: Nuwave\Lighthouse\Validation\ValidateDirective
"""
Run validation on a field.
"""
directive @validate on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Validation\ValidatorDirective
"""
Provide validation rules through a PHP class.
"""
directive @validator(
"""
The name of the class to use.
If defined on an input, this defaults to a class called `{$inputName}Validator` in the
default validator namespace. For fields, it uses the namespace of the parent type
and the field name: `{$parent}\{$field}Validator`.
"""
class: String
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | FIELD_DEFINITION | INPUT_OBJECT
# Directive class: Nuwave\Lighthouse\Schema\Directives\AggregateDirective
"""
Returns an aggregate of a column in a given relationship or model.
Requires Laravel 8+.
"""
directive @aggregate(
"""
The column to aggregate.
"""
column: String!
"""
The aggregate function to compute.
"""
function: AggregateFunction!
"""
The relationship with the column to aggregate.
Mutually exclusive with the `model` argument.
"""
relation: String
"""
The model with the column to aggregate.
Mutually exclusive with the `relation` argument.
"""
model: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
"""
Options for the `function` argument of `@aggregate`.
"""
enum AggregateFunction {
"""
Return the average value.
"""
AVG
"""
Return the sum.
"""
SUM
"""
Return the minimum.
"""
MIN
"""
Return the maximum.
"""
MAX
}
# Directive class: Nuwave\Lighthouse\Schema\Directives\AllDirective
"""
Fetch all Eloquent models and return the collection as the result.
"""
directive @all(
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
"""
model: String
"""
Point to a function that provides a Query Builder instance.
This replaces the use of a model.
"""
builder: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\BelongsToDirective
"""
Resolves a field through the Eloquent `BelongsTo` relationship.
"""
directive @belongsTo(
"""
Specify the relationship method name in the model class,
if it is named different from the field in the schema.
"""
relation: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\BelongsToManyDirective
"""
Resolves a field through the Eloquent `BelongsToMany` relationship.
"""
directive @belongsToMany(
"""
Specify the relationship method name in the model class,
if it is named different from the field in the schema.
"""
relation: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
"""
Allows to resolve the relation as a paginated list.
"""
type: BelongsToManyType
"""
Allow clients to query paginated lists without specifying the amount of items.
Overrules the `pagination.default_count` setting from `lighthouse.php`.
"""
defaultCount: Int
"""
Limit the maximum amount of items that clients can request from paginated lists.
Overrules the `pagination.max_count` setting from `lighthouse.php`.
"""
maxCount: Int
"""
Specify a custom type that implements the Edge interface
to extend edge object.
Only applies when using Relay style "connection" pagination.
"""
edgeType: String
) on FIELD_DEFINITION
"""
Options for the `type` argument of `@belongsToMany`.
"""
enum BelongsToManyType {
"""
Offset-based pagination, similar to the Laravel default.
"""
PAGINATOR
"""
Offset-based pagination like the Laravel "Simple Pagination", which does not count the total number of records.
"""
SIMPLE
"""
Cursor-based pagination, compatible with the Relay specification.
"""
CONNECTION
}
# Directive class: Nuwave\Lighthouse\Schema\Directives\BuilderDirective
"""
Manipulate the query builder with a method.
"""
directive @builder(
"""
Reference a method that is passed the query builder.
Consists of two parts: a class name and a method name, separated by an `@` symbol.
If you pass only a class name, the method name defaults to `__invoke`.
"""
method: String!
"""
Pass a value to the method as the second argument after the query builder.
Only used when the directive is added on a field.
"""
value: BuilderValue
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | FIELD_DEFINITION
"""
Any constant literal value: https://graphql.github.io/graphql-spec/draft/#sec-Input-Values
"""
scalar BuilderValue
# Directive class: Nuwave\Lighthouse\Schema\Directives\CacheDirective
"""
Cache the result of a resolver.
"""
directive @cache(
"""
Set the duration it takes for the cache to expire in seconds.
If not given, the result will be stored forever.
"""
maxAge: Int
"""
Limit access to cached data to the currently authenticated user.
When the field is accessible by guest users, this will not have
any effect, they will access a shared cache.
"""
private: Boolean = false
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\CacheKeyDirective
"""
Specify the field to use as a key when creating a cache.
"""
directive @cacheKey on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\ClearCacheDirective
scalar ClearCacheId
"""
Clear a resolver cache by tags.
"""
directive @clearCache(
"""
Name of the parent type of the field to clear.
"""
type: String!
"""
Source of the parent ID to clear.
"""
idSource: ClearCacheId
"""
Name of the field to clear.
"""
field: String
) on FIELD_DEFINITION
"""
Options for the `id` argument on `@clearCache`.
Exactly one of the fields must be given.
"""
input ClearCacheIdSource {
"""
Path of an argument the client passes to the field `@clearCache` is applied to.
"""
argument: String
"""
Path of a field in the result returned from the field `@clearCache` is applied to.
"""
field: String
}
# Directive class: Nuwave\Lighthouse\Schema\Directives\ComplexityDirective
"""
Customize the calculation of a fields complexity score before execution.
"""
directive @complexity(
"""
Reference a function to customize the complexity score calculation.
Consists of two parts: a class name and a method name, seperated by an `@` symbol.
If you pass only a class name, the method name defaults to `__invoke`.
"""
resolver: String
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\CountDirective
"""
Returns the count of a given relationship or model.
"""
directive @count(
"""
The relationship to count.
Mutually exclusive with the `model` argument.
"""
relation: String
"""
The model to count.
Mutually exclusive with the `relation` argument.
"""
model: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\CreateDirective
"""
Create a new Eloquent model with the given arguments.
"""
directive @create(
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
"""
model: String
"""
Specify the name of the relation on the parent model.
This is only needed when using this directive as a nested arg
resolver and if the name of the relation is not the arg name.
"""
relation: String
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\DeleteDirective
"""
Delete one or more models by their ID.
The field must have a single non-null argument that may be a list.
"""
directive @delete(
"""
DEPRECATED use @globalId, will be removed in v6
Set to `true` to use global ids for finding the model.
If set to `false`, regular non-global ids are used.
"""
globalId: Boolean = false
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
"""
model: String
"""
Specify the name of the relation on the parent model.
This is only needed when using this directive as a nested arg
resolver and if the name of the relation is not the arg name.
"""
relation: String
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\DeprecatedDirective
"""
Marks an element of a GraphQL schema as no longer supported.
"""
directive @deprecated(
"""
Explains why this element was deprecated, usually also including a
suggestion for how to access supported similar data. Formatted
in [Markdown](https://daringfireball.net/projects/markdown).
"""
reason: String = "No longer supported"
) on FIELD_DEFINITION | ENUM_VALUE
# Directive class: Nuwave\Lighthouse\Schema\Directives\EnumDirective
"""
Assign an internal value to an enum key.
When dealing with the Enum type in your code,
you will receive the defined value instead of the string key.
"""
directive @enum(
"""
The internal value of the enum key.
"""
value: EnumValue
) on ENUM_VALUE
"""
Any constant literal value: https://graphql.github.io/graphql-spec/draft/#sec-Input-Values
"""
scalar EnumValue
# Directive class: Nuwave\Lighthouse\Schema\Directives\EqDirective
"""
Add an equal conditional to a database query.
"""
directive @eq(
"""
Specify the database column to compare.
Required if the directive is:
- used on an argument and the database column has a different name
- used on a field
"""
key: String
"""
Provide a value to compare against.
Only required when this directive is used on a field.
"""
value: EqValue
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | FIELD_DEFINITION
"""
Any constant literal value: https://graphql.github.io/graphql-spec/draft/#sec-Input-Values
"""
scalar EqValue
# Directive class: Nuwave\Lighthouse\Schema\Directives\EventDirective
"""
Dispatch an event after the resolution of a field.
The event constructor will be called with a single argument:
the resolved value of the field.
"""
directive @event(
"""
Specify the fully qualified class name (FQCN) of the event to dispatch.
"""
dispatch: String!
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\FieldDirective
"""
Assign a resolver function to a field.
"""
directive @field(
"""
A reference to the resolver function to be used.
Consists of two parts: a class name and a method name, seperated by an `@` symbol.
If you pass only a class name, the method name defaults to `__invoke`.
"""
resolver: String!
"""
Supply additional data to the resolver.
"""
args: [String!]
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\FindDirective
"""
Find a model based on the arguments provided.
"""
directive @find(
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
"""
model: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\FirstDirective
"""
Get the first query result from a collection of Eloquent models.
"""
directive @first(
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
"""
model: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\HasManyDirective
"""
Corresponds to [the Eloquent relationship HasMany](https://laravel.com/docs/eloquent-relationships#one-to-many).
"""
directive @hasMany(
"""
Specify the relationship method name in the model class,
if it is named different from the field in the schema.
"""
relation: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
"""
Allows to resolve the relation as a paginated list.
Allowed values: `paginator`, `connection`.
"""
type: HasManyType
"""
Allow clients to query paginated lists without specifying the amount of items.
Overrules the `pagination.default_count` setting from `lighthouse.php`.
"""
defaultCount: Int
"""
Limit the maximum amount of items that clients can request from paginated lists.
Overrules the `pagination.max_count` setting from `lighthouse.php`.
"""
maxCount: Int
"""
Specify a custom type that implements the Edge interface
to extend edge object.
Only applies when using Relay style "connection" pagination.
"""
edgeType: String
) on FIELD_DEFINITION
"""
Options for the `type` argument of `@hasMany`.
"""
enum HasManyType {
"""
Offset-based pagination, similar to the Laravel default.
"""
PAGINATOR
"""
Offset-based pagination like the Laravel "Simple Pagination", which does not count the total number of records.
"""
SIMPLE
"""
Cursor-based pagination, compatible with the Relay specification.
"""
CONNECTION
}
# Directive class: Nuwave\Lighthouse\Schema\Directives\HasOneDirective
"""
Corresponds to [the Eloquent relationship HasOne](https://laravel.com/docs/eloquent-relationships#one-to-one).
"""
directive @hasOne(
"""
Specify the relationship method name in the model class,
if it is named different from the field in the schema.
"""
relation: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\HashDirective
"""
Use Laravel hashing to transform an argument value.
Useful for hashing passwords before inserting them into the database.
This uses the default hashing driver defined in `config/hashing.php`.
"""
directive @hash on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\InDirective
"""
Use the client given list value to add an IN conditional to a database query.
"""
directive @in(
"""
Specify the database column to compare.
Only required if database column has a different name than the attribute in your schema.
"""
key: String
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\InjectDirective
"""
Inject a value from the context object into the arguments.
"""
directive @inject(
"""
A path to the property of the context that will be injected.
If the value is nested within the context, you may use dot notation
to get it, e.g. "user.id".
"""
context: String!
"""
The target name of the argument into which the value is injected.
You can use dot notation to set the value at arbitrary depth
within the incoming argument.
"""
name: String!
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\InterfaceDirective
"""
Use a custom resolver to determine the concrete type of an interface.
"""
directive @interface(
"""
Reference to a custom type-resolver function.
Consists of two parts: a class name and a method name, seperated by an `@` symbol.
If you pass only a class name, the method name defaults to `__invoke`.
"""
resolveType: String!
) on INTERFACE
# Directive class: Nuwave\Lighthouse\Schema\Directives\LazyLoadDirective
"""
Perform a [lazy eager load](https://laravel.com/docs/eloquent-relationships#lazy-eager-loading)
on the relations of a list of models.
"""
directive @lazyLoad(
"""
The names of the relationship methods to load.
"""
relations: [String!]!
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\LikeDirective
"""
Add a `LIKE` conditional to a database query.
"""
directive @like(
"""
Specify the database column to compare.
Required if the directive is:
- used on an argument and the database column has a different name
- used on a field
"""
key: String
"""
Fixate the positions of wildcards (`%`, `_`) in the LIKE comparison around the
placeholder `{}`, e.g. `%{}`, `__{}` or `%{}%`.
If specified, wildcard characters in the client-given input are escaped.
If not specified, the client can pass wildcards unescaped.
"""
template: String
"""
Provide a value to compare against.
Only used when the directive is added on a field.
"""
value: String
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\LimitDirective
"""
Allow clients to specify the maximum number of results to return.
"""
directive @limit on ARGUMENT_DEFINITION | FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\MethodDirective
"""
Resolve a field by calling a method on the parent object.
Use this if the data is not accessible through simple property access or if you
want to pass argument to the method.
"""
directive @method(
"""
Specify the method of which to fetch the data from.
Defaults to the name of the field if not given.
"""
name: String
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\ModelDirective
"""
Map a model class to an object type.
This can be used when the name of the model differs from the name of the type.
"""
directive @model(
"""
The class name of the corresponding model.
"""
class: String!
) on OBJECT
# Directive class: Nuwave\Lighthouse\Schema\Directives\MorphManyDirective
"""
Corresponds to [Eloquent's MorphMany-Relationship](https://laravel.com/docs/eloquent-relationships#one-to-many-polymorphic-relations).
"""
directive @morphMany(
"""
Specify the relationship method name in the model class,
if it is named different from the field in the schema.
"""
relation: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
"""
Allows to resolve the relation as a paginated list.
"""
type: MorphManyType
"""
Allow clients to query paginated lists without specifying the amount of items.
Overrules the `pagination.default_count` setting from `lighthouse.php`.
"""
defaultCount: Int
"""
Limit the maximum amount of items that clients can request from paginated lists.
Overrules the `pagination.max_count` setting from `lighthouse.php`.
"""
maxCount: Int
"""
Specify a custom type that implements the Edge interface
to extend edge object.
Only applies when using Relay style "connection" pagination.
"""
edgeType: String
) on FIELD_DEFINITION
"""
Options for the `type` argument of `@morphMany`.
"""
enum MorphManyType {
"""
Offset-based pagination, similar to the Laravel default.
"""
PAGINATOR
"""
Offset-based pagination like the Laravel "Simple Pagination", which does not count the total number of records.
"""
SIMPLE
"""
Cursor-based pagination, compatible with the Relay specification.
"""
CONNECTION
}
# Directive class: Nuwave\Lighthouse\Schema\Directives\MorphOneDirective
"""
Corresponds to [Eloquent's MorphOne-Relationship](https://laravel.com/docs/eloquent-relationships#one-to-one-polymorphic-relations).
"""
directive @morphOne(
"""
Specify the relationship method name in the model class,
if it is named different from the field in the schema.
"""
relation: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\MorphToDirective
"""
Corresponds to [Eloquent's MorphTo-Relationship](https://laravel.com/docs/eloquent-relationships#one-to-one-polymorphic-relations).
"""
directive @morphTo(
"""
Specify the relationship method name in the model class,
if it is named different from the field in the schema.
"""
relation: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\MorphToManyDirective
"""
Corresponds to [Eloquent's ManyToMany-Polymorphic-Relationship](https://laravel.com/docs/eloquent-relationships#many-to-many-polymorphic-relations).
"""
directive @morphToMany(
"""
Specify the relationship method name in the model class,
if it is named different from the field in the schema.
"""
relation: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\NamespaceDirective
"""
Redefine the default namespaces used in other directives.
The arguments are a map from directive names to namespaces.
"""
directive @namespace on FIELD_DEFINITION | OBJECT
# Directive class: Nuwave\Lighthouse\Schema\Directives\NeqDirective
"""
Use the client given value to add an not-equal conditional to a database query.
"""
directive @neq(
"""
Specify the database column to compare.
Only required if database column has a different name than the attribute in your schema.
"""
key: String
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\NestDirective
"""
A no-op nested arg resolver that delegates all calls
to the ArgResolver directives attached to the children.
"""
directive @nest on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\NotInDirective
"""
Use the client given value to add a NOT IN conditional to a database query.
"""
directive @notIn(
"""
Specify the database column to compare.
Only required if database column has a different name than the attribute in your schema.
"""
key: String
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\RenameArgsDirective
"""
Apply the @rename directives on the incoming arguments.
"""
directive @renameArgs on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\RenameDirective
"""
Change the internally used name of a field or argument.
This does not change the schema from a client perspective.
"""
directive @rename(
"""
The internal name of an attribute/property/key.
"""
attribute: String!
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\SanitizeDirective
"""
Apply sanitization to the arguments of a field.
"""
directive @sanitize on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\ScalarDirective
"""
Reference a class implementing a scalar definition.
"""
directive @scalar(
"""
Reference to a class that extends `\GraphQL\Type\Definition\ScalarType`.
"""
class: String!
) on SCALAR
# Directive class: Nuwave\Lighthouse\Schema\Directives\ScopeDirective
"""
Adds a scope to the query builder.
The scope method will receive the client-given value of the argument as the second parameter.
"""
directive @scope(
"""
The name of the scope.
Defaults to the name of the argument.
"""
name: String
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\SpreadDirective
"""
Merge the fields of a nested input object into the arguments of its parent
when processing the field arguments given by a client.
"""
directive @spread on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\ThrottleDirective
"""
Sets rate limit to access the field. Does the same as ThrottleRequests Laravel Middleware.
"""
directive @throttle(
"""
Named preconfigured rate limiter. Requires Laravel 8.x or later.
"""
name: String
"""
Maximum number of attempts in a specified time interval.
"""
maxAttempts: Int = 60
"""
Time in minutes to reset attempts.
"""
decayMinutes: Float = 1.0
"""
Prefix to distinguish several field groups.
"""
prefix: String
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\TransformArgsDirective
"""
Transform the arguments of a field.
"""
directive @transformArgs on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\TrimDirective
"""
Remove whitespace from the beginning and end of a given input.
This can be used on:
- a single argument or input field to sanitize that subtree
- a field to trim all strings
"""
directive @trim on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\UnionDirective
"""
Use a custom function to determine the concrete type of unions.
"""
directive @union(
"""
Reference a function that returns the implementing Object Type.
Consists of two parts: a class name and a method name, seperated by an `@` symbol.
If you pass only a class name, the method name defaults to `__invoke`.
"""
resolveType: String!
) on UNION
# Directive class: Nuwave\Lighthouse\Schema\Directives\UpdateDirective
"""
Update an Eloquent model with the input values of the field.
"""
directive @update(
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
"""
model: String
"""
Specify the name of the relation on the parent model.
This is only needed when using this directive as a nested arg
resolver and if the name of the relation is not the arg name.
"""
relation: String
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\UpsertDirective
"""
Create or update an Eloquent model with the input values of the field.
"""
directive @upsert(
"""
Specify the class name of the model to use.
This is only needed when the default model detection does not work.
"""
model: String
"""
DEPRECATED use @globalId, will be removed in v6
Set to `true` to use global ids for finding the model.
If set to `false`, regular non-global ids are used.
"""
globalId: Boolean = false
"""
Specify the name of the relation on the parent model.
This is only needed when using this directive as a nested arg
resolver and if the name of the relation is not the arg name.
"""
relation: String
) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\WhereBetweenDirective
"""
Verify that a column's value is between two values.
The type of the input value this is defined upon should be
an `input` object with two fields.
"""
directive @whereBetween(
"""
Specify the database column to compare.
Only required if database column has a different name than the attribute in your schema.
"""
key: String
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\WhereDirective
"""
Use an input value as a [where filter](https://laravel.com/docs/queries#where-clauses).
"""
directive @where(
"""
Specify the operator to use within the WHERE condition.
"""
operator: String = "="
"""
Specify the database column to compare.
Only required if database column has a different name than the attribute in your schema.
"""
key: String
"""
Use Laravel's where clauses upon the query builder.
This only works for clauses with the signature (string $column, string $operator, mixed $value).
"""
clause: String
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\WhereJsonContainsDirective
"""
Use an input value as a [whereJsonContains filter](https://laravel.com/docs/queries#json-where-clauses).
"""
directive @whereJsonContains(
"""
Specify the database column and path inside the JSON to compare.
Only required if database column has a different name than the attribute in your schema.
"""
key: String
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\WhereNotBetweenDirective
"""
Verify that a column's value lies outside of two values.
The type of the input value this is defined upon should be
an `input` object with two fields.
"""
directive @whereNotBetween(
"""
Specify the database column to compare.
Only required if database column has a different name than the attribute in your schema.
"""
key: String
) on ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\WithCountDirective
"""
Eager-load the count of an Eloquent relation if the field is queried.
Note that this does not return a value for the field, the count is simply
prefetched, assuming it is used to compute the field value. Use `@count`
if the field should simply return the relation count.
"""
directive @withCount(
"""
Specify the relationship method name in the model class.
"""
relation: String!
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
# Directive class: Nuwave\Lighthouse\Schema\Directives\WithDirective
"""
Eager-load an Eloquent relation.
"""
directive @with(
"""
Specify the relationship method name in the model class,
if it is named different from the field in the schema.
"""
relation: String
"""
Apply scopes to the underlying query.
"""
scopes: [String!]
) on FIELD_DEFINITION
# Directive class: App\GraphQL\Directions
"""
Limit field access to users of a certain role.
"""
directive @canAccess(
"""
The name of the role authorized users need to have.
"""
requiredRole: [String!]
) on FIELD_DEFINITION | OBJECT
*
!public/
!.gitignore
compiled.php
config.php
down
events.scanned.php
maintenance.php
routes.php
routes.scanned.php
schedule-*
services.json
<?php
namespace Tests;
use Illuminate\Contracts\Console\Kernel;
trait CreatesApplication
{
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make(Kernel::class)->bootstrap();
return $app;
}
}
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function test_the_application_returns_a_successful_response()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}
<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}
<?php
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function test_that_true_is_true()
{
$this->assertTrue(true);
}
}
const mix = require('laravel-mix');
/*
|--------------------------------------------------------------------------
| Mix Asset Management
|--------------------------------------------------------------------------
|
| Mix provides a clean, fluent API for defining some Webpack build steps
| for your Laravel applications. By default, we are compiling the CSS
| file for the application as well as bundling up all the JS files.
|
*/
mix.js('resources/js/app.js', 'public/js')
.postCss('resources/css/app.css', 'public/css', [
//
]);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment