repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Services/Payment/PayService.php
app/Services/Payment/PayService.php
<?php namespace App\Services\Payment; use App\Models\CompanyInfo; use App\Models\Invoice; use App\Models\PaymentMethod; use App\Models\PaymentPlan; use App\Models\UserInfo; class PayService { public function pay() { $requestIyzico = new \Iyzipay\Request\CreateCheckoutFormInitializeRequest(); ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Services/Manager/LiveLessonService.php
app/Services/Manager/LiveLessonService.php
<?php namespace App\Services\Manager; use App\Http\Requests\Manager\LiveLessonRequest; use App\Models\LiveLesson; use Illuminate\Support\Str; class LiveLessonService { public function store(LiveLessonRequest $request) { LiveLesson::create([ 'title' => Str::title($request->title), ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Services/Manager/NotificationService.php
app/Services/Manager/NotificationService.php
<?php namespace App\Services\Manager; use App\Jobs\NotificationJob; use App\Models\Notification; use App\Models\NotificationUser; use App\Services\FirebaseNotificationService; use Illuminate\Http\Request; use Illuminate\Support\Facades\DB; class NotificationService { protected $notificationService; public f...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Services/Manager/AppointmentService.php
app/Services/Manager/AppointmentService.php
<?php namespace App\Services\Manager; use App\Http\Requests\Manager\AppointmentRequest; use App\Models\Appointment; use App\Models\AppointmentSetting; use App\Models\User; use Illuminate\Http\Request; class AppointmentService { public function store(AppointmentRequest $request): void { Appointment::c...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Services/Manager/CarService.php
app/Services/Manager/CarService.php
<?php namespace App\Services\Manager; use App\Http\Requests\Manager\CarRequest; use App\Models\Car; class CarService { public function store(CarRequest $request) { Car::create([ 'plate_code' => strtoupper($request->plate_code), 'companyId' => companyId(), 'typeId' ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Services/Manager/QuestionService.php
app/Services/Manager/QuestionService.php
<?php namespace App\Services\Manager; use App\Http\Requests\Manager\QuestionRequest; use App\Jobs\ImageConvertJob; use App\Models\BugQuestion; use App\Models\CompanyQuestion; use App\Models\Question; use App\Models\QuestionChoice; use App\Models\QuestionChoiceKey; use App\Services\ImageConvertService; use Illuminate\...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Services/Manager/ClassExamService.php
app/Services/Manager/ClassExamService.php
<?php namespace App\Services\Manager; use App\Models\ClassExam; use App\Models\ClassExamQuestionType; class ClassExamService { public function store($request): void { $class = ClassExam::create([ 'companyId' => companyId(), 'periodId' => $request->periodId, 'month...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Services/Manager/CompanyService.php
app/Services/Manager/CompanyService.php
<?php namespace App\Services\Manager; use App\Jobs\ImageConvertJob; use App\Models\Company; use App\Models\CompanyInfo; use App\Services\ImageConvertService; use Illuminate\Support\Facades\DB; use Illuminate\Support\Str; class CompanyService { protected $convertService; public function __construct(ImageConv...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/ModelFilters/UserInfoFilter.php
app/ModelFilters/UserInfoFilter.php
<?php namespace App\ModelFilters; use EloquentFilter\ModelFilter; class UserInfoFilter extends ModelFilter { /** * Related Models that have ModelFilters as well as the method on the ModelFilter * As [relationMethod => [input_key1, input_key2]]. * * @var array */ public $relations = [...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Console/Kernel.php
app/Console/Kernel.php
<?php namespace App\Console; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; class Kernel extends ConsoleKernel { /** * The Artisan commands provided by your application. * * @var array */ protected $commands = [ // ]; ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Console/Commands/InvoiceCreate.php
app/Console/Commands/InvoiceCreate.php
<?php namespace App\Console\Commands; use App\Services\InvoiceCreatorService; use Illuminate\Console\Command; class InvoiceCreate extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'invoice:create'; /** * The console ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/TestQuestion.php
app/Models/TestQuestion.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class TestQuestion extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'questionId', 'testId', ]; ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Appointment.php
app/Models/Appointment.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Appointment extends Model { use HasFactory, SoftDeletes; /** * @var string[] */ protected $fillable = [ 'date',...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/NotificationUser.php
app/Models/NotificationUser.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class NotificationUser extends Model { use HasFactory, SoftDeletes; protected $fillable = ['userId', 'notificationId']; public functio...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/PaymentPlan.php
app/Models/PaymentPlan.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class PaymentPlan extends Model { use HasFactory; protected $fillable = ['month', 'description']; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Support.php
app/Models/Support.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Support extends Model { use HasFactory, SoftDeletes; /** * @var string[] */ protected $fillable = [ 'subject', ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/LessonContent.php
app/Models/LessonContent.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class LessonContent extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'title', 'content', 'file'...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/BugQuestion.php
app/Models/BugQuestion.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasOne; class BugQuestion extends Model { use HasFactory; protected $fillable = ['questionId']; public function companyQuestion(): HasOne...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Month.php
app/Models/Month.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Month extends Model { use HasFactory; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/CarType.php
app/Models/CarType.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class CarType extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'title', ]; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/State.php
app/Models/State.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class State extends Model { use HasFactory; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/CompanyInfo.php
app/Models/CompanyInfo.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class CompanyInfo extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'tax_no', 'email', 'website_...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/LiveLesson.php
app/Models/LiveLesson.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class LiveLesson extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'title', 'live_date', 'url', ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/User.php
app/Models/User.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends Authenticatable { use HasFactory, Notifiable, SoftDeletes; cons...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/PaymentMethod.php
app/Models/PaymentMethod.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class PaymentMethod extends Model { use HasFactory; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Test.php
app/Models/Test.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Test extends Model { use HasFactory, SoftDeletes; protected $fillable = ['title', 'userId']; public function userInfo() { ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Notification.php
app/Models/Notification.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Notification extends Model { use HasFactory, SoftDeletes; protected $fillable = ['message', 'status', 'companyId']; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Language.php
app/Models/Language.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Language extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'title', 'code', ]; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/ClassExamQuestionType.php
app/Models/ClassExamQuestionType.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class ClassExamQuestionType extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'classExamId', 'typeId', ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/TestResultType.php
app/Models/TestResultType.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class TestResultType extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'total_question', 'correct', ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Invoice.php
app/Models/Invoice.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasOne; use Illuminate\Database\Eloquent\SoftDeletes; class Invoice extends Model { use HasFactory, SoftDeletes; protected $fillable = [ ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/AppointmentSetting.php
app/Models/AppointmentSetting.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class AppointmentSetting extends Model { use HasFactory; protected $fillable = ['ignore_date', 'companyId']; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/CompanyQuestion.php
app/Models/CompanyQuestion.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\SoftDeletes; class CompanyQuestion extends Model { use HasFactory, SoftDeletes; protected $fillabl...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/City.php
app/Models/City.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class City extends Model { use HasFactory; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/QuestionType.php
app/Models/QuestionType.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class QuestionType extends Model { use HasFactory, SoftDeletes; protected $fillable = ['title']; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/NotificationDeviceToken.php
app/Models/NotificationDeviceToken.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class NotificationDeviceToken extends Model { use HasFactory, SoftDeletes; protected $fillable = ['userId', 'token']; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/UserAnswer.php
app/Models/UserAnswer.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class UserAnswer extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'testId', 'userId', 'question...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Country.php
app/Models/Country.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Country extends Model { use HasFactory; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Coupon.php
app/Models/Coupon.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Coupon extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'code', 'discount', 'start_date',...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/ClassExam.php
app/Models/ClassExam.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Eloquent\SoftDeletes; class ClassExam extends Model { use HasFactory, SoftDeletes; protected $fillable = [ ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/QuestionChoice.php
app/Models/QuestionChoice.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class QuestionChoice extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'title', 'path', 'questio...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Group.php
app/Models/Group.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Group extends Model { use HasFactory; protected $fillable = [ 'title', ]; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Car.php
app/Models/Car.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Car extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'plate_code', 'companyId', 'typeId',...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Company.php
app/Models/Company.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Company extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'title', 'subdomain', ]; public...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Period.php
app/Models/Period.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Period extends Model { use HasFactory; protected $fillable = [ 'title', ]; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/QuestionChoiceKey.php
app/Models/QuestionChoiceKey.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class QuestionChoiceKey extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'questionId', 'choiceId', ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Question.php
app/Models/Question.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Question extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'title', 'description', 'typeId...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/UserInfo.php
app/Models/UserInfo.php
<?php namespace App\Models; use EloquentFilter\Filterable; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasOne; use Illuminate\Database\Eloquent\SoftDeletes; class UserInfo extends Model { use Filterable, HasFactory, Sof...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/TestResult.php
app/Models/TestResult.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class TestResult extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'total_question', 'point', 'c...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Models/Package.php
app/Models/Package.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Package extends Model { use HasFactory, SoftDeletes; protected $fillable = [ 'title', 'description', 'price',...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Providers/BroadcastServiceProvider.php
app/Providers/BroadcastServiceProvider.php
<?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();...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Providers/RouteServiceProvider.php
app/Providers/RouteServiceProvider.php
<?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 ServiceProvide...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Providers/EventServiceProvider.php
app/Providers/EventServiceProvider.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 { /*...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Providers/AppServiceProvider.php
app/Providers/AppServiceProvider.php
<?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. ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/app/Providers/AuthServiceProvider.php
app/Providers/AuthServiceProvider.php
<?php namespace App\Providers; use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; class AuthServiceProvider extends ServiceProvider { /** * The policy mappings for the application. * * @var array */ protected $policies = [ // 'App\Models\Model' => ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/bootstrap/app.php
bootstrap/app.php
<?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 La...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/tests/TestCase.php
tests/TestCase.php
<?php namespace Tests; use Illuminate\Foundation\Testing\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase { use CreatesApplication; }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/tests/CreatesApplication.php
tests/CreatesApplication.php
<?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...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/tests/Feature/ExampleTest.php
tests/Feature/ExampleTest.php
<?php namespace Tests\Feature; use Tests\TestCase; class ExampleTest extends TestCase { /** * A basic test example. * * @return void */ public function test_example() { $response = $this->get('/'); $response->assertStatus(200); } }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/tests/Unit/QuestionTest.php
tests/Unit/QuestionTest.php
<?php namespace Tests\Unit; use Tests\TestCase; class QuestionTest extends TestCase { public function test_user_can_login() { $credential = [ 'tc' => 11111111111, 'password' => 'password', ]; $response = $this->post('login', $credential); $response->a...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/tests/Unit/ExampleTest.php
tests/Unit/ExampleTest.php
<?php namespace Tests\Unit; use PHPUnit\Framework\TestCase; class ExampleTest extends TestCase { /** * A basic test example. * * @return void */ public function test_example() { $this->assertTrue(true); } }
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/routes/web.php
routes/web.php
<?php use App\Http\Controllers\Admin\AdminController; use App\Http\Controllers\Admin\CarTypeController; use App\Http\Controllers\Admin\CompanyController; use App\Http\Controllers\Admin\CouponController; use App\Http\Controllers\Admin\GroupController; use App\Http\Controllers\Admin\InvoiceController; use App\Http\Contr...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/routes/channels.php
routes/channels.php
<?php use Illuminate\Support\Facades\Broadcast; /* |-------------------------------------------------------------------------- | Broadcast Channels |-------------------------------------------------------------------------- | | Here you may register all of the event broadcasting channels that your | application suppo...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/routes/api.php
routes/api.php
<?php use App\Http\Controllers\API\QuestionController; use Illuminate\Http\Request; use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can re...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/routes/console.php
routes/console.php
<?php use Illuminate\Foundation\Inspiring; use Illuminate\Support\Facades\Artisan; /* |-------------------------------------------------------------------------- | Console Routes |-------------------------------------------------------------------------- | | This file is where you may define all of your Closure based...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/public/index.php
public/index.php
<?php use Illuminate\Contracts\Http\Kernel; use Illuminate\Http\Request; define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Check If The Application Is Under Maintenance |--------------------------------------------------------------------------...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/app.php
config/app.php
<?php return [ /* |-------------------------------------------------------------------------- | Application Name |-------------------------------------------------------------------------- | | This value is the name of your application. This value is used when the | framework needs to plac...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/image.php
config/image.php
<?php return [ /* |-------------------------------------------------------------------------- | Image Driver |-------------------------------------------------------------------------- | | Intervention Image supports "GD Library" and "Imagick" to process images | internally. You may choose...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/larafirebase.php
config/larafirebase.php
<?php return [ 'authentication_key' => env('FIREBASE_AUTHENCATION_KEY'), ];
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/logging.php
config/logging.php
<?php use Monolog\Handler\NullHandler; use Monolog\Handler\StreamHandler; use Monolog\Handler\SyslogUdpHandler; return [ /* |-------------------------------------------------------------------------- | Default Log Channel |-------------------------------------------------------------------------- ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/session.php
config/session.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Session Driver |-------------------------------------------------------------------------- | | This option controls the default session "driver" that will be use...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/queue.php
config/queue.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Queue Connection Name |-------------------------------------------------------------------------- | | Laravel's queue API supports an assortment of back-ends via a single | API, giving y...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/debugbar.php
config/debugbar.php
<?php return [ /* |-------------------------------------------------------------------------- | Debugbar Settings |-------------------------------------------------------------------------- | | Debugbar is enabled by default, when debug is set to true in app.php. | You can override t...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/cache.php
config/cache.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Cache Store |-------------------------------------------------------------------------- | | This option controls the default cache connection that gets used whil...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/eloquentfilter.php
config/eloquentfilter.php
<?php return [ /* |-------------------------------------------------------------------------- | Eloquent Filter Settings |-------------------------------------------------------------------------- | | This is the namespace all you Eloquent Model Filters will reside | */ 'na...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/hashing.php
config/hashing.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Hash Driver |-------------------------------------------------------------------------- | | This option controls the default hash driver that will be used to hash | passwords for your ap...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/view.php
config/view.php
<?php return [ /* |-------------------------------------------------------------------------- | View Storage Paths |-------------------------------------------------------------------------- | | Most templating systems load templates from disk. Here you may specify | an array of paths that...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/database.php
config/database.php
<?php use Illuminate\Support\Str; return [ /* |-------------------------------------------------------------------------- | Default Database Connection Name |-------------------------------------------------------------------------- | | Here you may specify which of the database connections b...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/services.php
config/services.php
<?php return [ /* |-------------------------------------------------------------------------- | Third Party Services |-------------------------------------------------------------------------- | | This file is for storing the credentials for third party services such | as Mailgun, Postmark...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/flare.php
config/flare.php
<?php use Spatie\FlareClient\FlareMiddleware\AddGitInformation; use Spatie\FlareClient\FlareMiddleware\CensorRequestBodyFields; use Spatie\FlareClient\FlareMiddleware\CensorRequestHeaders; use Spatie\FlareClient\FlareMiddleware\RemoveRequestIp; use Spatie\LaravelIgnition\FlareMiddleware\AddDumps; use Spatie\LaravelIgn...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/filesystems.php
config/filesystems.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Filesystem Disk |-------------------------------------------------------------------------- | | Here you may specify the default filesystem disk that should be used | by the framework. T...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/tinker.php
config/tinker.php
<?php return [ /* |-------------------------------------------------------------------------- | Console Commands |-------------------------------------------------------------------------- | | This option allows you to add additional Artisan commands that should | be available within the T...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/mail.php
config/mail.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Mailer |-------------------------------------------------------------------------- | | This option controls the default mailer that is used to send any email | messages sent by your appl...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/ignition.php
config/ignition.php
<?php use Spatie\Ignition\Solutions\SolutionProviders\BadMethodCallSolutionProvider; use Spatie\Ignition\Solutions\SolutionProviders\MergeConflictSolutionProvider; use Spatie\Ignition\Solutions\SolutionProviders\UndefinedPropertySolutionProvider; use Spatie\LaravelIgnition\Solutions\SolutionProviders\DefaultDbNameSolu...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/excel.php
config/excel.php
<?php use Maatwebsite\Excel\Excel; return [ 'exports' => [ /* |-------------------------------------------------------------------------- | Chunk size |-------------------------------------------------------------------------- | | When using FromQuery, the query is...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/cors.php
config/cors.php
<?php return [ /* |-------------------------------------------------------------------------- | Cross-Origin Resource Sharing (CORS) Configuration |-------------------------------------------------------------------------- | | Here you may configure your settings for cross-origin resource shar...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/broadcasting.php
config/broadcasting.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Broadcaster |-------------------------------------------------------------------------- | | This option controls the default broadcaster that will be used by the | framework when an even...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/config/auth.php
config/auth.php
<?php return [ /* |-------------------------------------------------------------------------- | Authentication Defaults |-------------------------------------------------------------------------- | | This option controls the default authentication "guard" and password | reset options for y...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/factories/CompanyFactory.php
database/factories/CompanyFactory.php
<?php namespace Database\Factories; use App\Models\Company; use Illuminate\Database\Eloquent\Factories\Factory; class CompanyFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = Company::class; /** * Define the mode...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/factories/UserFactory.php
database/factories/UserFactory.php
<?php namespace Database\Factories; use App\Models\User; use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Support\Str; class UserFactory extends Factory { /** * The name of the factory's corresponding model. * * @var string */ protected $model = User::class; /** ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_06_123434_create_periods_table.php
database/migrations/2021_08_06_123434_create_periods_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreatePeriodsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('periods', funct...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_06_122820_create_user_infos_table.php
database/migrations/2021_08_06_122820_create_user_infos_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUserInfosTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('user_infos', ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_12_164825_create_months_table.php
database/migrations/2021_08_12_164825_create_months_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateMonthsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('months', functio...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_09_11_171158_create_company_questions_table.php
database/migrations/2021_09_11_171158_create_company_questions_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateCompanyQuestionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('compan...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_09_09_173506_create_notification_device_tokens_table.php
database/migrations/2021_09_09_173506_create_notification_device_tokens_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateNotificationDeviceTokensTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_30_132338_create_test_result_types_table.php
database/migrations/2021_08_30_132338_create_test_result_types_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateTestResultTypesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('test_re...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_13_211500_create_supports_table.php
database/migrations/2021_08_13_211500_create_supports_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateSupportsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('supports', fun...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_10_05_153614_create_bug_questions_table.php
database/migrations/2021_10_05_153614_create_bug_questions_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateBugQuestionsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('bug_questi...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_04_130333_create_question_types_table.php
database/migrations/2021_08_04_130333_create_question_types_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateQuestionTypesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('question_...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false
codenteq/laerx
https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2014_10_12_000000_create_users_table.php
database/migrations/2014_10_12_000000_create_users_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function ...
php
MIT
1beced57923761b2f07ca20030a4df11eb05b732
2026-01-05T05:20:28.495862Z
false