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/database/migrations/2021_08_06_123846_create_groups_table.php | database/migrations/2021_08_06_123846_create_groups_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateGroupsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('groups', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('groups');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_14_180340_create_appointment_settings_table.php | database/migrations/2021_08_14_180340_create_appointment_settings_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAppointmentSettingsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('appointment_settings', function (Blueprint $table) {
$table->id();
$table->date('ignore_date');
$table->foreignId('companyId');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('appointment_settings');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_04_130322_create_questions_table.php | database/migrations/2021_08_04_130322_create_questions_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateQuestionsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('questions', function (Blueprint $table) {
$table->id();
$table->string('title', 500);
$table->mediumText('description')->nullable();
$table->boolean('questionImage');
$table->boolean('choiceImage');
$table->string('imagePath')->nullable();
$table->foreignId('languageId');
$table->foreignId('typeId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('questions');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_09_17_173346_create_payment_methods_table.php | database/migrations/2021_09_17_173346_create_payment_methods_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePaymentMethodsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('payment_methods', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string('code');
$table->string('description')->nullable();
$table->boolean('status')->default(1);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('payment_methods');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_12_02_191209_create_payment_plans_table.php | database/migrations/2021_12_02_191209_create_payment_plans_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePaymentPlansTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('payment_plans', function (Blueprint $table) {
$table->id();
$table->integer('month');
$table->string('description');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('payment_plans');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2014_10_12_100000_create_password_resets_table.php | database/migrations/2014_10_12_100000_create_password_resets_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePasswordResetsTable 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 | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_20_172444_create_coupons_table.php | database/migrations/2021_08_20_172444_create_coupons_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCouponsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('coupons', function (Blueprint $table) {
$table->id();
$table->string('code');
$table->integer('discount');
$table->date('start_date');
$table->date('end_date');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('coupons');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_20_143850_create_company_infos_table.php | database/migrations/2021_08_20_143850_create_company_infos_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCompanyInfosTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('company_infos', function (Blueprint $table) {
$table->id();
$table->string('tax_no', 11);
$table->string('email');
$table->string('website_url')->nullable();
$table->string('phone');
$table->foreignId('countryId');
$table->foreignId('cityId');
$table->foreignId('stateId');
$table->string('address', 600);
$table->string('zip_code');
$table->string('logo')->default('/companies/default.png');
$table->foreignId('planId');
$table->foreignId('companyId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('company_infos');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_06_123517_create_languages_table.php | database/migrations/2021_08_06_123517_create_languages_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateLanguagesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('languages', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string('code');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('languages');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_14_180352_create_appointments_table.php | database/migrations/2021_08_14_180352_create_appointments_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateAppointmentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('appointments', function (Blueprint $table) {
$table->id();
$table->date('date');
$table->boolean('status')->default(1);
$table->foreignId('teacherId');
$table->foreignId('userId');
$table->foreignId('carId');
$table->foreignId('companyId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('appointments');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2019_08_19_000000_create_failed_jobs_table.php | database/migrations/2019_08_19_000000_create_failed_jobs_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateFailedJobsTable 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 | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_20_150748_create_cities_table.php | database/migrations/2021_08_20_150748_create_cities_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCitiesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('cities', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->integer('plate_code');
$table->foreignId('countryId');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('cities');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_06_123948_create_companies_table.php | database/migrations/2021_08_06_123948_create_companies_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCompaniesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('companies', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string('subdomain');
$table->boolean('status')->default(1);
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('companies');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_14_135007_create_cars_table.php | database/migrations/2021_08_14_135007_create_cars_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCarsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('cars', function (Blueprint $table) {
$table->id();
$table->string('plate_code');
$table->foreignId('companyId');
$table->foreignId('typeId');
$table->boolean('status');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('cars');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_20_150738_create_countries_table.php | database/migrations/2021_08_20_150738_create_countries_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCountriesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('countries', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string('code');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('countries');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_22_133158_create_invoices_table.php | database/migrations/2021_08_22_133158_create_invoices_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateInvoicesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('invoices', function (Blueprint $table) {
$table->id();
$table->decimal('price');
$table->decimal('discount_amount')->nullable();
$table->decimal('total_amount')->nullable();
$table->date('start_date');
$table->date('end_date');
$table->foreignId('companyId');
$table->foreignId('packageId');
$table->foreignId('paymentId')->nullable();
$table->foreignId('couponId')->nullable();
$table->boolean('status')->default(0);
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('invoices');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_18_150717_create_notification_users_table.php | database/migrations/2021_08_18_150717_create_notification_users_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateNotificationUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('notification_users', function (Blueprint $table) {
$table->id();
$table->foreignId('userId');
$table->foreignId('notificationId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('notification_users');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_04_130406_create_question_choices_table.php | database/migrations/2021_08_04_130406_create_question_choices_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateQuestionChoicesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('question_choices', function (Blueprint $table) {
$table->id();
$table->string('title')->nullable();
$table->string('path')->nullable();
$table->foreignId('questionId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('question_choices');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_26_191244_create_jobs_table.php | database/migrations/2021_08_26_191244_create_jobs_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateJobsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('jobs', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('queue')->index();
$table->longText('payload');
$table->unsignedTinyInteger('attempts');
$table->unsignedInteger('reserved_at')->nullable();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('jobs');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_06_124134_create_tests_table.php | database/migrations/2021_08_06_124134_create_tests_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTestsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tests', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->foreignId('userId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('tests');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_06_124413_create_user_answers_table.php | database/migrations/2021_08_06_124413_create_user_answers_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUserAnswersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('user_answers', function (Blueprint $table) {
$table->id();
$table->foreignId('questionId');
$table->foreignId('choiceId')->nullable();
$table->foreignId('testId');
$table->foreignId('userId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('user_answers');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_09_12_092049_create_class_exam_question_types_table.php | database/migrations/2021_09_12_092049_create_class_exam_question_types_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateClassExamQuestionTypesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('class_exam_question_types', function (Blueprint $table) {
$table->id();
$table->foreignId('classExamId')->index();
$table->foreignId('typeId')->index();
$table->integer('length');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('class_exam_question_types');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_09_07_180409_create_lesson_contents_table.php | database/migrations/2021_09_07_180409_create_lesson_contents_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateLessonContentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('lesson_contents', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->longText('content');
$table->string('file')->nullable();
$table->foreignId('languageId');
$table->foreignId('typeId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('lesson_contents');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_14_135020_create_car_types_table.php | database/migrations/2021_08_14_135020_create_car_types_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateCarTypesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('car_types', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('car_types');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_30_132309_create_test_results_table.php | database/migrations/2021_08_30_132309_create_test_results_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTestResultsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('test_results', function (Blueprint $table) {
$table->id();
$table->integer('total_question');
$table->integer('point');
$table->integer('correct');
$table->integer('in_correct');
$table->integer('blank_question');
$table->foreignId('testId');
$table->foreignId('userId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('test_results');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_06_124624_create_class_exams_table.php | database/migrations/2021_08_06_124624_create_class_exams_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateClassExamsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('class_exams', function (Blueprint $table) {
$table->id();
$table->foreignId('companyId')->index();
$table->foreignId('periodId')->index();
$table->foreignId('monthId')->index();
$table->foreignId('groupId')->index();
$table->boolean('status')->default(1);
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('class_exams');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_20_150716_create_packages_table.php | database/migrations/2021_08_20_150716_create_packages_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePackagesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('packages', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string('description', 400);
$table->decimal('price');
$table->foreignId('planId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('packages');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_20_150759_create_states_table.php | database/migrations/2021_08_20_150759_create_states_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateStatesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('states', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->foreignId('cityId');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('states');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_06_123554_create_live_lessons_table.php | database/migrations/2021_08_06_123554_create_live_lessons_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateLiveLessonsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('live_lessons', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->dateTime('live_date');
$table->string('url');
$table->foreignId('periodId');
$table->foreignId('monthId');
$table->foreignId('groupId');
$table->foreignId('typeId');
$table->foreignId('companyId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('live_lessons');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_18_150627_create_notifications_table.php | database/migrations/2021_08_18_150627_create_notifications_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateNotificationsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('notifications', function (Blueprint $table) {
$table->id();
$table->text('message');
$table->boolean('status')->default(0);
$table->foreignId('companyId')->index();
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('notifications');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_06_124249_create_test_questions_table.php | database/migrations/2021_08_06_124249_create_test_questions_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTestQuestionsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('test_questions', function (Blueprint $table) {
$table->id();
$table->foreignId('questionId');
$table->foreignId('testId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('test_questions');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/migrations/2021_08_04_132435_create_question_choice_keys_table.php | database/migrations/2021_08_04_132435_create_question_choice_keys_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateQuestionChoiceKeysTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('question_choice_keys', function (Blueprint $table) {
$table->id();
$table->foreignId('questionId');
$table->foreignId('choiceId');
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('question_choice_keys');
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/seeders/PaymentMethodSeeder.php | database/seeders/PaymentMethodSeeder.php | <?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class PaymentMethodSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
DB::table('payment_methods')->insert([
[
'title' => 'Online Ödeme',
'code' => 'online',
'description' => 'online',
'created_at' => now(),
'updated_at' => now(),
],
[
'title' => 'Banka Havalesi ile Ödeme',
'code' => 'wire_transfer',
'description' => 'wire_transfer',
'created_at' => now(),
'updated_at' => now(),
],
]);
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/seeders/AdminSeeder.php | database/seeders/AdminSeeder.php | <?php
namespace Database\Seeders;
use App\Models\User;
use Illuminate\Database\Seeder;
class AdminSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
User::factory(1)
->state(['email' => 'admin@example.com'])
->state(['tc' => '00000000000'])
->state(['type' => User::Admin])
->create();
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/seeders/QuestionTypeSeeder.php | database/seeders/QuestionTypeSeeder.php | <?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class QuestionTypeSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
DB::table('question_types')->insert([
[
'title' => 'İlk Yardım',
'created_at' => now(),
'updated_at' => now(),
],
[
'title' => 'Trafik Çevre',
'created_at' => now(),
'updated_at' => now(),
],
[
'title' => 'Araç Tekniği',
'created_at' => now(),
'updated_at' => now(),
],
[
'title' => 'Trafik Adabı',
'created_at' => now(),
'updated_at' => now(),
],
]);
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/seeders/LangSeeder.php | database/seeders/LangSeeder.php | <?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class LangSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
DB::table('languages')->insert([
[
'title' => 'Türkçe',
'code' => 'tr',
'created_at' => now(),
'updated_at' => now(),
],
[
'title' => 'English',
'code' => 'en',
'created_at' => now(),
'updated_at' => now(),
],
[
'title' => 'فارسی',
'code' => 'fa',
'created_at' => now(),
'updated_at' => now(),
],
[
'title' => 'عربي',
'code' => 'ar',
'created_at' => now(),
'updated_at' => now(),
],
]);
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/seeders/DatabaseSeeder.php | database/seeders/DatabaseSeeder.php | <?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*/
public function run(): void
{
$this->call(MonthSeeder::class);
$this->call(PaymentMethodSeeder::class);
$this->call(QuestionTypeSeeder::class);
$this->call(AdminSeeder::class);
$this->call(LangSeeder::class);
$this->call(LocationSeeder::class);
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/seeders/LocationSeeder.php | database/seeders/LocationSeeder.php | <?php
namespace Database\Seeders;
use App\Models\City;
use App\Models\Country;
use App\Models\State;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\File;
class LocationSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
$countries = File::json(base_path('/database/dump-data/countries.json'));
$cities = File::json(base_path('/database/dump-data/cities.json'));
$states = File::json(base_path('/database/dump-data/states.json'));
DB::transaction(function () use ($countries, $cities, $states) {
foreach ($countries as $country) {
Country::create($country);
}
foreach ($states as $state) {
State::create($state);
}
foreach ($cities as $city) {
City::create($city);
}
});
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/database/seeders/MonthSeeder.php | database/seeders/MonthSeeder.php | <?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class MonthSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
DB::table('months')->insert([
[
'title' => 'Ocak',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
[
'title' => 'Şubat',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
[
'title' => 'Mart',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
[
'title' => 'Nisan',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
[
'title' => 'Mayıs',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
[
'title' => 'Haziran',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
[
'title' => 'Temmuz',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
[
'title' => 'Ağustos',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
[
'title' => 'Eylül',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
[
'title' => 'Ekim',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
[
'title' => 'Kasım',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
[
'title' => 'Aralık',
'created_at' => \Carbon\Carbon::now(),
'updated_at' => \Carbon\Carbon::now(),
],
]);
}
}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/auth/login.blade.php | resources/views/auth/login.blade.php | @extends('layouts.app')
@section('content')
<form method="POST" action="{{ route('login') }}">
@csrf
<div class="signin" [hidden]="login">
<h1 class="topline">Giriş Yap</h1>
<br />
<div class="input-field">
<input id="tc" type="text" placeholder="TCKN" class="@error('tc') is-invalid @enderror" name="tc" value="{{ old('tc') }}" required autocomplete="tc" autofocus maxlength="11">
@error('tc')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<div class="input-field">
<input id="password" type="password" placeholder="Şifre" class="@error('password') is-invalid @enderror" name="password" required autocomplete="current-password">
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<div class="action">
<a class="forgot" href="{{ route('password.request') }}">Parolanızı mı unuttunuz?</a>
</div>
<div class="login-box-button">
<button type="submit">
Giriş yap
</button>
</div>
<footer>
<p class="text-center mt-5">
<a href="{{ route('static.page.privacy-policy') }}" class="text-decoration-none small" style="color: #909090" target="_blank">Gizlilik Politikası - KVKK</a>
</p>
</footer>
</div>
</form>
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/auth/verify.blade.php | resources/views/auth/verify.blade.php | @extends('layouts.app')
@section('content')
<div class="container p-5">
<div class="row">
<div class="col-md-4 offset-md-4">
<div class="card bg-dark text-white">
<div class="card-header">{{ __('Eposta adresinizi doğrulayın') }}</div>
<div class="card-body">
@if (session('resent'))
<div class="alert alert-success" role="alert">
{{ __('E-posta adresinize yeni bir doğrulama bağlantısı gönderildi.') }}
</div>
@endif
{{ __('Devam etmeden önce, lütfen bir doğrulama bağlantısı için e-postanızı kontrol edin.') }}
{{ __('E-postayı almadıysanız') }},
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
@csrf
<button type="submit" class="login-button btn btn-light fw-bolder">{{ __('başka bir istekte bulunmak için buraya tıklayın') }}</button>.
</form>
</div>
</div>
</div>
</div>
</div>
@csrf
<div class="signin" [hidden]="login">
<h1 class="topline">Eposta adresinizi doğrulayın</h1>
<br />
@if (session('resent'))
<div class="alert alert-success" role="alert">
{{ __('E-posta adresinize yeni bir doğrulama bağlantısı gönderildi.') }}
</div>
@endif
<div class="input-field">
<input id="password" type="password" placeholder="Şifre" class="@error('password') is-invalid @enderror" name="password" required autocomplete="current-password">
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<label>Devam etmeden önce, lütfen bir doğrulama bağlantısı için e-postanızı kontrol edin.</label>
<label>E-postayı almadıysanız</label>
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
@csrf
<div class="login-box-button">
<button type="submit">
Başka bir istekte bulunmak için buraya tıklayın
</button>
</div>
</form>
</div>
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/auth/register.blade.php | resources/views/auth/register.blade.php | @extends('layouts.app')
@section('content')
<div class="container p-5">
<div class="row">
<div class="col-md-4 offset-md-4">
<div class="card bg-dark text-white">
<div class="card-header fw-bold fs-4">{{ __('Kayıt Ol') }}</div>
<div class="card-body">
<form method="POST" action="{{ route('register') }}">
@csrf
<div class="form-group row mb-3">
<div class="col-12">
<input id="name" type="text" placeholder="İsim" class="form-control @error('name') is-invalid @enderror" name="name" value="{{ old('name') }}" required autocomplete="name" autofocus>
@error('name')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div class="form-group row mb-3">
<div class="col-12">
<input id="email" type="email" placeholder="E-mail" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email">
@error('email')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div class="form-group row mb-3">
<div class="col-12">
<input id="password" type="password" placeholder="Şifre" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="new-password">
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
</div>
<div class="form-group row mb-3">
<div class="col-12">
<input id="password-confirm" type="password" placeholder="Şifre onayla" class="form-control" name="password_confirmation" required autocomplete="new-password">
</div>
</div>
<div class="form-group row mb-0">
<div class="col-12">
<button type="submit" class="login-button btn btn-light fw-bolder">
{{ __('Kayıt Ol') }}
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/auth/passwords/email.blade.php | resources/views/auth/passwords/email.blade.php | @extends('layouts.app')
@section('content')
<form method="POST" action="{{ route('password.email') }}">
@csrf
<div class="signin" [hidden]="login">
<h1 class="topline">Şifreyi yenile</h1>
<br />
@if (session('status'))
<div class="alert alert-success" role="alert">
{{ session('status') }}
</div>
@endif
<div class="input-field">
<input id="email" type="email" placeholder="E-mail" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>
@error('email')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<div class="login-box-button">
<button type="submit">
Şifre Sıfırlama Bağlantısını Gönder
</button>
</div>
</div>
</form>
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/auth/passwords/reset.blade.php | resources/views/auth/passwords/reset.blade.php | @extends('layouts.app')
@section('content')
<form method="POST" action="{{ route('password.update') }}">
@csrf
<div class="signin" [hidden]="login">
<h1 class="topline">Şifreyi Yenile</h1>
<br/>
<input type="hidden" name="token" value="{{ $token }}">
<div class="input-field">
<input id="email" type="email" placeholder="E-mail"
class="form-control @error('email') is-invalid @enderror" name="email"
value="{{ $email ?? old('email') }}" required autocomplete="email" autofocus>
@error('email')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<div class="input-field">
<input id="password" type="password" placeholder="Şifre"
class="form-control @error('password') is-invalid @enderror" name="password" required
autocomplete="new-password">
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<div class="input-field">
<input id="password" type="password" placeholder="Şifreyi yenile" class="form-control"
name="password_confirmation" required autocomplete="new-password">
</div>
<div class="login-box-button">
<button type="submit">
Şifre Yenile
</button>
</div>
</div>
</form>
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/auth/passwords/confirm.blade.php | resources/views/auth/passwords/confirm.blade.php | @extends('layouts.app')
@section('content')
<form method="POST" action="{{ route('password.confirm') }}">
@csrf
<div class="signin" [hidden]="login">
<h1 class="topline">Devam etmeden önce lütfen şifrenizi onaylayın.</h1>
<br />
<div class="input-field">
<input id="password" type="password" placeholder="Şifre" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="current-password">
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<div class="input-field">
<input id="password" type="password" placeholder="Şifre" class="@error('password') is-invalid @enderror" name="password" required autocomplete="current-password">
@error('password')
<span class="invalid-feedback" role="alert">
<strong>{{ $message }}</strong>
</span>
@enderror
</div>
<div class="action">
<a class="forgot" href="{{ route('password.request') }}">Parolanızı mı unuttunuz?</a>
</div>
<div class="login-box-button">
<button type="submit">
Şifreyi Onayla
</button>
</div>
</div>
</form>
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/teacher/profile.blade.php | resources/views/teacher/profile.blade.php | @extends('teacher.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('teacher/menu.profile')}}</h2>
</blockquote>
</figure>
<div class="row">
<div class="col-12 col-lg-12">
<form name="form-data">
@csrf @method('PUT')
<div class="form-floating mb-3">
<input type="text" class="form-control" id="floatingFirst"
name="name"
value="{{$user->user->name}}">
<label for="floatingFirst">{{__('teacher/profile.name')}}</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="floatingLast"
name="surname"
value="{{$user->user->surname}}">
<label for="floatingLast">{{__('teacher/profile.surname')}}</label>
</div>
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingMail"
name="email"
value="{{$user->user->email}}">
<label for="floatingMail">{{__('teacher/profile.email')}}</label>
</div>
<div class="form-floating mb-3">
<input type="password" class="form-control" id="floatingMail"
name="password">
<label for="floatingMail">{{__('teacher/profile.new_password')}}</label>
</div>
<div class="form-floating mb-3">
<input type="password" class="form-control" id="floatingMail"
name="password_confirmation">
<label for="floatingMail">{{__('teacher/profile.new_password_repeat')}}</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="floatingPhone"
name="phone"
value="{{$user->phone}}">
<label for="floatingPhone">{{__('teacher/profile.phone')}}</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="floatingAddress"
name="address"
value="{{$user->address}}">
<label for="floatingAddress">{{__('teacher/profile.address')}}</label>
</div>
<div class="form-floating mb-3">
<select class="form-select" id="floatingSelect" name="languageId">
@foreach ($languages as $language)
<option
value="{{$language->id}}" {{$language->id == $user->languageId ? 'selected' : null}}>{{$language->title}}</option>
@endforeach
</select>
<label for="floatingSelect">{{__('teacher/profile.language')}}.</label>
</div>
<div class="input-group mb-3">
<input type="file" class="form-control" name="photo">
<label class="input-group-text" for="inputGroupFile02">{{__('teacher/profile.profile_photo')}}</label>
</div>
<div class="mt-3">
<button type="button" onclick="createAndUpdateButton()" class="btn btn-success">{{__('teacher/profile.save_btn')}}
</button>
<a href="{{route('teacher.appointment.index')}}" class="btn btn-danger">{{__('teacher/profile.close_btn')}}</a>
</div>
</form>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('teacher/menu.profile')}}</title>
@endsection
@section('css')
@include('partials.stylesheet')
@endsection
@section('js')
<script>
const actionUrl = '{{route('teacher.profile.update',$user)}}';
const backUrl = '{{route('teacher.profile.index')}}';
</script>
@include('partials.script')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/teacher/index.blade.php | resources/views/teacher/index.blade.php | @extends('teacher.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('teacher/menu.my_appointment')}}</h2>
</blockquote>
</figure>
<div class="row">
<div class="col-12 col-lg-12 overflow-auto">
<table id="data-table" class="table table-striped">
<thead>
<tr>
<th scope="col">{{__('teacher/appointment.trainee')}}</th>
<th scope="col">{{__('teacher/appointment.car')}}</th>
<th scope="col">{{__('teacher/appointment.date')}}</th>
<th scope="col">{{__('teacher/appointment.status')}}</th>
</tr>
</thead>
<tbody>
@foreach ($appointments as $appointment)
<tr>
<td>{{$appointment->user->name .' '. $appointment->user->surname}}</td>
<td>{{$appointment->car->plate_code}}</td>
<td>{{$appointment->date}}</td>
<td class="{{$appointment->status == 1 ? 'text-success' : 'text-danger'}}">{{$appointment->status == 1 ? 'Aktif' : 'Pasif'}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('teacher/menu.my_appointment')}}</title>
@endsection
@section('css')
@include('layouts.stylesheet')
@endsection
@section('js')
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
@include('layouts.script')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/teacher/layout/stylesheet.blade.php | resources/views/teacher/layout/stylesheet.blade.php | <!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9FJZSZQ37J"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-9FJZSZQ37J');
</script>
<link rel="stylesheet" href="{{asset('css/app.css')}}">
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/teacher/layout/app.blade.php | resources/views/teacher/layout/app.blade.php | <!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="UTF-8">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="dc.language" content="{{ app()->getLocale() }}">
<meta http-equiv="content-language" content="{{ app()->getLocale() }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Quiz app uygulaması codenteq adı altında yazılmış bir online sınav uygulamasıdır.">
<meta name="author" content="Ahmet Arşiv">
<meta name="generator" content="Quiz App">
@yield('meta')
<link rel="icon" href="{{asset('images/favicon.png')}}" type="image/x-icon"/>
@include('teacher.layout.stylesheet')
@yield('css')
</head>
<body>
<div class="d-flex" id="wrapper">
<!-- Sidebar-->
<div class="border-end d-flex d-sm-flex" id="sidebar-wrapper">
<div class="sidebar-heading border-bottom fw-bold">
<div class="list-group list-group-flush sidebar-menu">
<a class="sidebar-logo-link d-md-none d-lg-none d-xl-none d-xxl-none" href="{{route('teacher.appointment.index')}}">
<img class="sidebar-logo" src="{{companyLogo()}}" alt="logo">
</a>
@include('teacher.layout.partials.sidebar')
</div>
</div>
</div>
<div class="sidebar-toggle-button">
<a class="btn btn-light" id="sidebarToggle"><i class="bi bi-list fs-4"></i></a>
</div>
<div id="page-content-wrapper">
@include('teacher.layout.partials.navbar-top')
<div class="content-app">
@yield('content')
</div>
@include('teacher.layout.partials.navbar')
</div>
</div>
</body>
@include('partials.together.script')
@yield('js')
</html>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/teacher/layout/partials/navbar.blade.php | resources/views/teacher/layout/partials/navbar.blade.php | <nav
class="navbar fixed-bottom bottom-navigation-mb d-flex justify-content-around d-md-none d-lg-none d-xl-none d-xxl-none">
<ul class="navbar-list mx-auto ">
<li class="navbar-item">
<a class="navbar-link {{ request()->is('teacher/appointment') ? 'active' : '' }}"
href="{{route('teacher.appointment.index')}}">
<i class="bi bi-calendar3 navbar-link-icon"></i>
</a>
</li>
<li class="navbar-item">
<a class="navbar-link {{ request()->is('teacher/profile*') ? 'active' : '' }}"
href="{{route('teacher.profile.index')}}">
<i class="bi bi-person navbar-link-icon"></i>
</a>
</li>
<li class="navbar-item">
<a class="navbar-link " href="{{route('logout-user')}}">
<i class="bi bi-box-arrow-right navbar-link-icon"></i>
</a>
</li>
<div class="navbar-underscore"></div>
</ul>
</nav>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/teacher/layout/partials/sidebar.blade.php | resources/views/teacher/layout/partials/sidebar.blade.php | <a class="sidebar-menu-list">
<a class="list-group-item list-group-item-action d-md-none d-lg-none d-xl-none d-xxl-none" type="button"
id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
<div class="profile-info-icon-sidebar me-1"><span>{{ auth()->user()->name[0] }}</span></div>
<span class="sidebar-menu-text fs-6">{{auth()->user()->name .' '. auth()->user()->surname}}</span>
<i class="bi bi-chevron-down sidebar-toggle-icon me-1"></i>
</a>
<ul class="dropdown-menu sidebar-dropdown-open d-md-none d-lg-none d-xl-none d-xxl-none"
aria-labelledby="dropdownMenuButton1">
<span class="text-secondary ms-2">ACCOUNT</span>
<li><a class="dropdown-item" href="{{route('teacher.profile.index')}}">{{__('teacher/profile.profile')}}</a>
</li>
<li><a class="dropdown-item" href="{{route('logout-user')}}">{{__('teacher/menu.logout')}}</a></li>
</ul>
<a class="list-group-item list-group-item-action d-none d-md-block text-left {{ request()->is('teacher/appointment') ? 'active' : '' }}"
href="{{route('teacher.appointment.index')}}">
<i class="bi bi-calendar3 fs-4"></i>
<span class="sidebar-menu-text">{{__('teacher/appointment.my_appointment')}}</span>
</a>
</a>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/teacher/layout/partials/navbar-top.blade.php | resources/views/teacher/layout/partials/navbar-top.blade.php | <nav class="navbar-top navbar navbar-expand-lg navbar-light bg-light border-bottom d-none d-md-block">
<div class="container-fluid">
<a class="navbar-logo-link" href="{{route('teacher.appointment.index')}}">
<img class="sidebar-logo" src="{{companyLogo()}}" alt="logo">
</a>
<div class="collapse navbar-collapse d-none d-sm-block" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mt-2 mt-lg-0">
<li class="nav-item dropdown">
<a class="nav-link navbar-border" id="navbarDropdown" href="#" role="button"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
@if(!auth()->user()->info->photo)
<div class="profile-info-icon-nav"><span>{{ auth()->user()->name[0] }}</span></div>
<span class="name">
{{auth()->user()->name .' '. auth()->user()->surname}}
<p class="role">{{auth()->user()->type == 3 ? 'Teacher' : 'null'}}</p>
</span>
@else
<img src="{{imagePath(auth()->user()->info->photo)}}" class="rounded-circle me-1"
height="30" alt="">
<span class="name">
{{auth()->user()->name .' '. auth()->user()->surname}}
<p class="role">{{auth()->user()->type == 3 ? 'Teacher' : 'null'}}</p>
</span>
@endif
<i class="bi bi-chevron-down sidebar-toggle-icon me-1"></i>
</a>
<div class="dropdown-menu dropdown-menu-end navbar-dropdown-open" aria-labelledby="navbarDropdown">
<a class="dropdown-item"
href="{{route('teacher.profile.index')}}">{{__('teacher/menu.profile')}}</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="{{route('logout-user')}}">{{__('teacher/menu.logout')}}</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/exports/users.blade.php | resources/views/exports/users.blade.php | <table>
<thead>
<tr>
<th>Tc</th>
<th>Ad</th>
<th>Soyad</th>
<th>Telefon</th>
<th>Email</th>
<th>Durum</th>
<th>Sınıf</th>
<th>Adres</th>
</tr>
</thead>
<tbody>
@foreach($users as $user)
<tr>
<td>{{ $user->tc }}</td>
<td>{{ $user->name }}</td>
<td>{{ $user->surname }}</td>
<td>{{ $user->info->phone }}</td>
<td>{{ $user->email }}</td>
<td>{{ $user->info->status == 1 ? 'Aktif' : 'Pasif' }}</td>
<td>{{ $user->info->group->title }}</td>
<td>{{ $user->info->address }}</td>
</tr>
@endforeach
</tbody>
</table>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/html/table.blade.php | resources/views/vendor/mail/html/table.blade.php | <div class="table">
{{ Illuminate\Mail\Markdown::parse($slot) }}
</div>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/html/layout.blade.php | resources/views/vendor/mail/html/layout.blade.php | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="color-scheme" content="light">
<meta name="supported-color-schemes" content="light">
<style>
@media only screen and (max-width: 600px) {
.inner-body {
width: 100% !important;
}
.footer {
width: 100% !important;
}
}
@media only screen and (max-width: 500px) {
.button {
width: 100% !important;
}
}
</style>
</head>
<body>
<table class="wrapper" width="100%" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td align="center">
<table class="content" width="100%" cellpadding="0" cellspacing="0" role="presentation">
{{ $header ?? '' }}
<!-- Email Body -->
<tr>
<td class="body" width="100%" cellpadding="0" cellspacing="0">
<table class="inner-body" align="center" width="570" cellpadding="0" cellspacing="0" role="presentation">
<!-- Body content -->
<tr>
<td class="content-cell">
{{ Illuminate\Mail\Markdown::parse($slot) }}
{{ $subcopy ?? '' }}
</td>
</tr>
</table>
</td>
</tr>
{{ $footer ?? '' }}
</table>
</td>
</tr>
</table>
</body>
</html>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/html/message.blade.php | resources/views/vendor/mail/html/message.blade.php | @component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => config('app.url')])
{{ config('app.name') }}
@endcomponent
@endslot
{{-- Body --}}
{{ $slot }}
{{-- Subcopy --}}
@isset($subcopy)
@slot('subcopy')
@component('mail::subcopy')
{{ $subcopy }}
@endcomponent
@endslot
@endisset
{{-- Footer --}}
@slot('footer')
@component('mail::footer')
© {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.')
@endcomponent
@endslot
@endcomponent
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/html/subcopy.blade.php | resources/views/vendor/mail/html/subcopy.blade.php | <table class="subcopy" width="100%" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td>
{{ Illuminate\Mail\Markdown::parse($slot) }}
</td>
</tr>
</table>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/html/panel.blade.php | resources/views/vendor/mail/html/panel.blade.php | <table class="panel" width="100%" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td class="panel-content">
<table width="100%" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td class="panel-item">
{{ Illuminate\Mail\Markdown::parse($slot) }}
</td>
</tr>
</table>
</td>
</tr>
</table>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/html/button.blade.php | resources/views/vendor/mail/html/button.blade.php | <table class="action" align="center" width="100%" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td align="center">
<table width="100%" border="0" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td align="center">
<table border="0" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td>
<a href="{{ $url }}" class="button button-{{ $color ?? 'primary' }}" target="_blank" rel="noopener">{{ $slot }}</a>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/html/header.blade.php | resources/views/vendor/mail/html/header.blade.php | <tr>
<td class="header">
<a href="{{ $url }}" style="display: inline-block;">
@if (trim($slot) === 'Laravel')
<img src="https://laravel.com/img/notification-logo.png" class="logo" alt="Laravel Logo">
@else
<img src="{{asset('images/laerx.png')}}" class="logo" alt="Logo">
@endif
</a>
</td>
</tr>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/html/footer.blade.php | resources/views/vendor/mail/html/footer.blade.php | <tr>
<td>
<table class="footer" align="center" width="570" cellpadding="0" cellspacing="0" role="presentation">
<tr>
<td class="content-cell" align="center">
{{ Illuminate\Mail\Markdown::parse($slot) }}
</td>
</tr>
</table>
</td>
</tr>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/text/table.blade.php | resources/views/vendor/mail/text/table.blade.php | {{ $slot }}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/text/layout.blade.php | resources/views/vendor/mail/text/layout.blade.php | {!! strip_tags($header) !!}
{!! strip_tags($slot) !!}
@isset($subcopy)
{!! strip_tags($subcopy) !!}
@endisset
{!! strip_tags($footer) !!}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/text/message.blade.php | resources/views/vendor/mail/text/message.blade.php | @component('mail::layout')
{{-- Header --}}
@slot('header')
@component('mail::header', ['url' => config('app.url')])
{{ config('app.name') }}
@endcomponent
@endslot
{{-- Body --}}
{{ $slot }}
{{-- Subcopy --}}
@isset($subcopy)
@slot('subcopy')
@component('mail::subcopy')
{{ $subcopy }}
@endcomponent
@endslot
@endisset
{{-- Footer --}}
@slot('footer')
@component('mail::footer')
© {{ date('Y') }} {{ config('app.name') }}. @lang('All rights reserved.')
@endcomponent
@endslot
@endcomponent
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/text/subcopy.blade.php | resources/views/vendor/mail/text/subcopy.blade.php | {{ $slot }}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/text/panel.blade.php | resources/views/vendor/mail/text/panel.blade.php | {{ $slot }}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/text/button.blade.php | resources/views/vendor/mail/text/button.blade.php | {{ $slot }}: {{ $url }}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/text/header.blade.php | resources/views/vendor/mail/text/header.blade.php | [{{ $slot }}]({{ $url }})
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/mail/text/footer.blade.php | resources/views/vendor/mail/text/footer.blade.php | {{ $slot }}
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/pagination/tailwind.blade.php | resources/views/vendor/pagination/tailwind.blade.php | @if ($paginator->hasPages())
<nav role="navigation" aria-label="{{ __('Pagination Navigation') }}" class="flex items-center justify-between">
<div class="flex justify-between flex-1 sm:hidden">
@if ($paginator->onFirstPage())
<span class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md">
{!! __('pagination.previous') !!}
</span>
@else
<a href="{{ $paginator->previousPageUrl() }}" class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150">
{!! __('pagination.previous') !!}
</a>
@endif
@if ($paginator->hasMorePages())
<a href="{{ $paginator->nextPageUrl() }}" class="relative inline-flex items-center px-4 py-2 ml-3 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150">
{!! __('pagination.next') !!}
</a>
@else
<span class="relative inline-flex items-center px-4 py-2 ml-3 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md">
{!! __('pagination.next') !!}
</span>
@endif
</div>
<div class="hidden sm:flex-1 sm:flex sm:items-center sm:justify-between">
<div>
<p class="text-sm text-gray-700 leading-5">
{!! __('Showing') !!}
@if ($paginator->firstItem())
<span class="font-medium">{{ $paginator->firstItem() }}</span>
{!! __('to') !!}
<span class="font-medium">{{ $paginator->lastItem() }}</span>
@else
{{ $paginator->count() }}
@endif
{!! __('of') !!}
<span class="font-medium">{{ $paginator->total() }}</span>
{!! __('results') !!}
</p>
</div>
<div>
<span class="relative z-0 inline-flex shadow-sm rounded-md">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<span aria-disabled="true" aria-label="{{ __('pagination.previous') }}">
<span class="relative inline-flex items-center px-2 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default rounded-l-md leading-5" aria-hidden="true">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clip-rule="evenodd" />
</svg>
</span>
</span>
@else
<a href="{{ $paginator->previousPageUrl() }}" rel="prev" class="relative inline-flex items-center px-2 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 rounded-l-md leading-5 hover:text-gray-400 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-500 transition ease-in-out duration-150" aria-label="{{ __('pagination.previous') }}">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clip-rule="evenodd" />
</svg>
</a>
@endif
{{-- Pagination Elements --}}
@foreach ($elements as $element)
{{-- "Three Dots" Separator --}}
@if (is_string($element))
<span aria-disabled="true">
<span class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-700 bg-white border border-gray-300 cursor-default leading-5">{{ $element }}</span>
</span>
@endif
{{-- Array Of Links --}}
@if (is_array($element))
@foreach ($element as $page => $url)
@if ($page == $paginator->currentPage())
<span aria-current="page">
<span class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5">{{ $page }}</span>
</span>
@else
<a href="{{ $url }}" class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 hover:text-gray-500 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150" aria-label="{{ __('Go to page :page', ['page' => $page]) }}">
{{ $page }}
</a>
@endif
@endforeach
@endif
@endforeach
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
<a href="{{ $paginator->nextPageUrl() }}" rel="next" class="relative inline-flex items-center px-2 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 rounded-r-md leading-5 hover:text-gray-400 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-500 transition ease-in-out duration-150" aria-label="{{ __('pagination.next') }}">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" />
</svg>
</a>
@else
<span aria-disabled="true" aria-label="{{ __('pagination.next') }}">
<span class="relative inline-flex items-center px-2 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default rounded-r-md leading-5" aria-hidden="true">
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20">
<path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" />
</svg>
</span>
</span>
@endif
</span>
</div>
</div>
</nav>
@endif
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/pagination/simple-default.blade.php | resources/views/vendor/pagination/simple-default.blade.php | @if ($paginator->hasPages())
<nav>
<ul class="pagination">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<li class="disabled" aria-disabled="true"><span>@lang('pagination.previous')</span></li>
@else
<li><a href="{{ $paginator->previousPageUrl() }}" rel="prev">@lang('pagination.previous')</a></li>
@endif
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
<li><a href="{{ $paginator->nextPageUrl() }}" rel="next">@lang('pagination.next')</a></li>
@else
<li class="disabled" aria-disabled="true"><span>@lang('pagination.next')</span></li>
@endif
</ul>
</nav>
@endif
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/pagination/default.blade.php | resources/views/vendor/pagination/default.blade.php | @if ($paginator->hasPages())
<nav>
<ul class="pagination">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<li class="disabled" aria-disabled="true" aria-label="@lang('pagination.previous')">
<span aria-hidden="true">‹</span>
</li>
@else
<li>
<a href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')">‹</a>
</li>
@endif
{{-- Pagination Elements --}}
@foreach ($elements as $element)
{{-- "Three Dots" Separator --}}
@if (is_string($element))
<li class="disabled" aria-disabled="true"><span>{{ $element }}</span></li>
@endif
{{-- Array Of Links --}}
@if (is_array($element))
@foreach ($element as $page => $url)
@if ($page == $paginator->currentPage())
<li class="active" aria-current="page"><span>{{ $page }}</span></li>
@else
<li><a href="{{ $url }}">{{ $page }}</a></li>
@endif
@endforeach
@endif
@endforeach
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
<li>
<a href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')">›</a>
</li>
@else
<li class="disabled" aria-disabled="true" aria-label="@lang('pagination.next')">
<span aria-hidden="true">›</span>
</li>
@endif
</ul>
</nav>
@endif
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/pagination/bootstrap-4.blade.php | resources/views/vendor/pagination/bootstrap-4.blade.php | @if ($paginator->hasPages())
<nav>
<ul class="pagination">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')">
<span class="page-link" aria-hidden="true">‹</span>
</li>
@else
<li class="page-item">
<a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')">‹</a>
</li>
@endif
{{-- Pagination Elements --}}
@foreach ($elements as $element)
{{-- "Three Dots" Separator --}}
@if (is_string($element))
<li class="page-item disabled" aria-disabled="true"><span class="page-link">{{ $element }}</span></li>
@endif
{{-- Array Of Links --}}
@if (is_array($element))
@foreach ($element as $page => $url)
@if ($page == $paginator->currentPage())
<li class="page-item active" aria-current="page"><span class="page-link">{{ $page }}</span></li>
@else
<li class="page-item"><a class="page-link" href="{{ $url }}">{{ $page }}</a></li>
@endif
@endforeach
@endif
@endforeach
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
<li class="page-item">
<a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')">›</a>
</li>
@else
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.next')">
<span class="page-link" aria-hidden="true">›</span>
</li>
@endif
</ul>
</nav>
@endif
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/pagination/bootstrap-5.blade.php | resources/views/vendor/pagination/bootstrap-5.blade.php | @if ($paginator->hasPages())
<nav class="d-flex justify-items-center justify-content-between">
<div class="d-flex justify-content-between flex-fill d-sm-none">
<ul class="pagination">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<li class="page-item disabled" aria-disabled="true">
<span class="page-link">@lang('pagination.previous')</span>
</li>
@else
<li class="page-item">
<a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev">@lang('pagination.previous')</a>
</li>
@endif
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
<li class="page-item">
<a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">@lang('pagination.next')</a>
</li>
@else
<li class="page-item disabled" aria-disabled="true">
<span class="page-link">@lang('pagination.next')</span>
</li>
@endif
</ul>
</div>
<div class="d-none flex-sm-fill d-sm-flex align-items-sm-center justify-content-sm-between">
<div>
<p class="small text-muted">
{!! __('Showing') !!}
<span class="font-medium">{{ $paginator->firstItem() }}</span>
{!! __('to') !!}
<span class="font-medium">{{ $paginator->lastItem() }}</span>
{!! __('of') !!}
<span class="font-medium">{{ $paginator->total() }}</span>
{!! __('results') !!}
</p>
</div>
<div>
<ul class="pagination">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')">
<span class="page-link" aria-hidden="true">‹</span>
</li>
@else
<li class="page-item">
<a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')">‹</a>
</li>
@endif
{{-- Pagination Elements --}}
@foreach ($elements as $element)
{{-- "Three Dots" Separator --}}
@if (is_string($element))
<li class="page-item disabled" aria-disabled="true"><span class="page-link">{{ $element }}</span></li>
@endif
{{-- Array Of Links --}}
@if (is_array($element))
@foreach ($element as $page => $url)
@if ($page == $paginator->currentPage())
<li class="page-item active" aria-current="page"><span class="page-link">{{ $page }}</span></li>
@else
<li class="page-item"><a class="page-link" href="{{ $url }}">{{ $page }}</a></li>
@endif
@endforeach
@endif
@endforeach
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
<li class="page-item">
<a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')">›</a>
</li>
@else
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.next')">
<span class="page-link" aria-hidden="true">›</span>
</li>
@endif
</ul>
</div>
</div>
</nav>
@endif
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/pagination/simple-bootstrap-4.blade.php | resources/views/vendor/pagination/simple-bootstrap-4.blade.php | @if ($paginator->hasPages())
<nav>
<ul class="pagination">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<li class="page-item disabled" aria-disabled="true">
<span class="page-link">@lang('pagination.previous')</span>
</li>
@else
<li class="page-item">
<a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev">@lang('pagination.previous')</a>
</li>
@endif
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
<li class="page-item">
<a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">@lang('pagination.next')</a>
</li>
@else
<li class="page-item disabled" aria-disabled="true">
<span class="page-link">@lang('pagination.next')</span>
</li>
@endif
</ul>
</nav>
@endif
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/pagination/semantic-ui.blade.php | resources/views/vendor/pagination/semantic-ui.blade.php | @if ($paginator->hasPages())
<div class="ui pagination menu" role="navigation">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<a class="icon item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')"> <i class="left chevron icon"></i> </a>
@else
<a class="icon item" href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')"> <i class="left chevron icon"></i> </a>
@endif
{{-- Pagination Elements --}}
@foreach ($elements as $element)
{{-- "Three Dots" Separator --}}
@if (is_string($element))
<a class="icon item disabled" aria-disabled="true">{{ $element }}</a>
@endif
{{-- Array Of Links --}}
@if (is_array($element))
@foreach ($element as $page => $url)
@if ($page == $paginator->currentPage())
<a class="item active" href="{{ $url }}" aria-current="page">{{ $page }}</a>
@else
<a class="item" href="{{ $url }}">{{ $page }}</a>
@endif
@endforeach
@endif
@endforeach
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
<a class="icon item" href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')"> <i class="right chevron icon"></i> </a>
@else
<a class="icon item disabled" aria-disabled="true" aria-label="@lang('pagination.next')"> <i class="right chevron icon"></i> </a>
@endif
</div>
@endif
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/pagination/simple-tailwind.blade.php | resources/views/vendor/pagination/simple-tailwind.blade.php | @if ($paginator->hasPages())
<nav role="navigation" aria-label="Pagination Navigation" class="flex justify-between">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<span class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md">
{!! __('pagination.previous') !!}
</span>
@else
<a href="{{ $paginator->previousPageUrl() }}" rel="prev" class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150">
{!! __('pagination.previous') !!}
</a>
@endif
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
<a href="{{ $paginator->nextPageUrl() }}" rel="next" class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150">
{!! __('pagination.next') !!}
</a>
@else
<span class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md">
{!! __('pagination.next') !!}
</span>
@endif
</nav>
@endif
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/pagination/simple-bootstrap-5.blade.php | resources/views/vendor/pagination/simple-bootstrap-5.blade.php | @if ($paginator->hasPages())
<nav role="navigation" aria-label="Pagination Navigation">
<ul class="pagination">
{{-- Previous Page Link --}}
@if ($paginator->onFirstPage())
<li class="page-item disabled" aria-disabled="true">
<span class="page-link">{!! __('pagination.previous') !!}</span>
</li>
@else
<li class="page-item">
<a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev">
{!! __('pagination.previous') !!}
</a>
</li>
@endif
{{-- Next Page Link --}}
@if ($paginator->hasMorePages())
<li class="page-item">
<a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">{!! __('pagination.next') !!}</a>
</li>
@else
<li class="page-item disabled" aria-disabled="true">
<span class="page-link">{!! __('pagination.next') !!}</span>
</li>
@endif
</ul>
</nav>
@endif
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/vendor/notifications/email.blade.php | resources/views/vendor/notifications/email.blade.php | @component('mail::message')
{{-- Greeting --}}
@if (! empty($greeting))
# {{ $greeting }}
@else
@if ($level === 'error')
# @lang('Whoops!')
@else
# @lang('Hello!')
@endif
@endif
{{-- Intro Lines --}}
@foreach ($introLines as $line)
{{ $line }}
@endforeach
{{-- Action Button --}}
@isset($actionText)
<?php
switch ($level) {
case 'success':
case 'error':
$color = $level;
break;
default:
$color = 'primary';
}
?>
@component('mail::button', ['url' => $actionUrl, 'color' => $color])
{{ $actionText }}
@endcomponent
@endisset
{{-- Outro Lines --}}
@foreach ($outroLines as $line)
{{ $line }}
@endforeach
{{-- Salutation --}}
@if (! empty($salutation))
{{ $salutation }}
@else
@lang('Regards'),<br>
{{ config('app.name') }}
@endif
{{-- Subcopy --}}
@isset($actionText)
@slot('subcopy')
@lang(
"If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\n".
'into your web browser:',
[
'actionText' => $actionText,
]
) <span class="break-all">[{{ $displayableActionUrl }}]({{ $actionUrl }})</span>
@endslot
@endisset
@endcomponent
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/static-pages/privacy-policy.blade.php | resources/views/static-pages/privacy-policy.blade.php | <!doctype html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="UTF-8">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="dc.language" content="{{ app()->getLocale() }}">
<meta http-equiv="content-language" content="{{ app()->getLocale() }}">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<title>{{config('app.name')}} Gizlilik Politikası - Kvkk</title>
</head>
<body>
<div class="container mt-5 p-5">
<img src="{{asset('images/laerx.png')}}" class="img-fluid w-50 mx-auto d-block mb-5">
<h2 style="box-sizing: border-box; font-family: MetropolisBold, Arial; font-weight: inherit; line-height: inherit; margin: 0px 0px 10px; font-size: inherit; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; vertical-align: baseline;">
<span
style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-size: 28px; line-height: inherit; font-family: inherit; vertical-align: baseline;">CODENTEQ KİŞİSEL VERİLERİN KORUNMASI POLİTİKASI</span>
</h2>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
6698 sayılı Kişisel Verilerin Korunması Kanunu (“KVKK”) uyarınca, Şirketimiz tarafından, Veri
Sorumlusu sıfatıyla, kişisel verileriniz, iş amaçlarıyla bağlı olarak, aşağıda açıklandığı
çerçevede kullanılmak, kaydedilmek, saklanmak, güncellenmek, aktarılmak ve/veya
sınıflandırılmak suretiyle işlenecektir. Bu kapsamda Şirketimiz tarafından başta özel hayatın
gizliliği olmak üzere, kişilerin temel hak ve özgürlüklerini korumak ve kişisel verilerin
korunması amacıyla düzenlenen Kanun ve Yönetmelikler gereğince Şirketimiz, kişisel verilerinizin
hukuka aykırı olarak işlenmesini önleme, hukuka aykırı olarak erişilmesini önleme ve muhafazasını
sağlama amacıyla, uygun güvenlik düzeyini temin etmeye yönelik tüm teknik ve idari
tedbirleri almaktadır.</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
Bu metnin hedef kitlesi, Şirketimiz çalışanları veya Şirketimize iş başvurusu yapmış olan çalışan
adayları dışındaki, Şirketimiz tarafından kişisel verileri işlenen tüm gerçek kişilerdir.</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
Veri sorumlusu sıfatıyla işlenen kişisel verilere, burada belirtilenlerle sınırlı sayıda olmamak üzere
aşağıda yer verilmektedir;</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
İsim, soy isim, T.C. kimlik numarası, T.C. vergi numarası, adres, telefon numarası, e-posta adresi,</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;"></p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
<span style="box-sizing: border-box; font-weight: bold; font-family: MetropolisBold, Arial;">Kişisel verilerin işlenme amaçları ve hukuki sebepleri</span>;
Tarafınızca paylaşılan kişisel verileriniz;</p>
<ul style="box-sizing: border-box; margin: 0px; padding: 15px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: inherit; font-family: MetropolisLight, Arial; vertical-align: baseline; list-style: none;">
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
Şirketimiz tarafından sunulan ürün ve hizmetlerden sizleri ve/veya temsil ettiğiniz kurum ve
kuruluşları faydalandırmak için, Şirketimizin ticari ve iş stratejilerinin belirlenmesi ve
uygulanması, pazarlama faaliyetlerinin yapılması, iş geliştirme ve planlama faaliyetlerinin gerçekleştirilmesi
dahil ve fakat bunlarla sınırlı olmamak üzere gerekli çalışmaların yürütülmesi,
</li>
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
Şirketimiz tarafından yürütülen iletişime yönelik idari operasyonların yürütülmesi,
</li>
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
Şirketimizin kullanımda olan lokasyonların fiziksel güvenliğinin ve denetiminin sağlanması,
</li>
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
İş ortağı/müşteri/tedarikçi (yetkili veya çalışanları) ilişkilerinin kurulması,
</li>
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
İş ortaklarımız, tedarikçilerimiz veya sair üçüncü kişilerle birlikte sunulan
ürün ve hizmetlere ilişkin sözleşme gereklerinin ve finansal mutabakatın sağlanması,
</li>
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
Şirketimizin insan kaynakları politikalarının yürütülmesi,
</li>
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
Şirketimizin çağrı merkezinin aranması veya internet sayfasının kullanılması
</li>
</ul>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
ve/veya</p>
<ul style="box-sizing: border-box; margin: 0px; padding: 15px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: inherit; font-family: MetropolisLight, Arial; vertical-align: baseline; list-style: none;">
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
Şirketimizin düzenlediği eğitim, seminer veya organizasyonlara katılım sağlanması amacıyla
işlenecektir.
</li>
</ul>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
<span style="box-sizing: border-box; font-weight: bold; font-family: MetropolisBold, Arial;">Kişisel verilerin toplanma ve saklanma yöntemi</span>;
Şirketimizle paylaştığınız kişisel verileriniz, otomatik ya da otomatik olmayan yöntemlerle, ofisler,
şubeler, çağrı merkezi, internet sitesi, sosyal medya mecraları, mobil uygulamalar ve benzeri vasıtalarla
sözlü, yazılı ya da elektronik olarak toplanabilir. Kişisel verileriniz elektronik ve/veya fiziksel
ortamlarda saklanacaktır. Şirketimiz tarafından temin edilen ve saklanan kişisel verilerinizin saklandıkları
ortamlarda yetkisiz erişime maruz kalmamaları, manipülasyona uğramamaları, kaybolmamaları ve zarar görmemeleri
amacıyla gereken iş süreçlerinin tasarımı ile teknik güvenlik altyapı geliştirmeleri
uygulanmaktadır.</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
Kişisel verileriniz, size bildirilen amaçlar ve kapsam dışında kullanılmamak kaydı ile gerekli tüm
bilgi güvenliği tedbirleri de alınarak işlenecek ve yasal saklama süresince veya böyle bir süre
öngörülmemişse işleme amacının gerekli kıldığı süre boyunca saklanacak ve işlenecektir. Bu süre
sona erdiğinde, kişisel verileriniz silinme, yok edilme ya da anonimleştirme yöntemleri ile Şirketimizin
veri akışlarından çıkarılacaktır.</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
<span style="box-sizing: border-box; font-weight: bold; font-family: MetropolisBold, Arial;">Kişisel Verilerin aktarılması</span>;
</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
Kişisel verileriniz, Kanunlar ve sair mevzuat kapsamında ve açıklanan amaçlarla;</p>
<ul style="box-sizing: border-box; margin: 0px; padding: 15px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: inherit; font-family: MetropolisLight, Arial; vertical-align: baseline; list-style: none;">
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
Codenteq Kurumsal şirketine,
</li>
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
Yetki vermiş olduğumuz, Şirketimiz nam ve hesabına faaliyette bulunan şirketler, temsilcilerimize,
</li>
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
Düzenleyici ve denetleyici kurumlara, kişisel verilerinizi tabi olduğu kanunlarında açıkça
talep etmeye yetkili olan kamu kurum veya kuruluşlara,
</li>
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
Belirtilen amaçlar kapsamında iş ortaklıkları, tedarikçi ve yüklenici şirketler,
bankalar, kredi risk ve finans kuruluşları ve sair gerçek veya tüzel kişilere,
</li>
<li style="box-sizing: border-box; margin: 0px 0px 10px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: disc;">
Vergi ve benzeri danışmanlara, yasal takip süreçleri ile ilgili zorunlu kişilere, kurum ve
kuruluşlara ve denetimciler de dâhil olmak üzere danışmanlık aldığımız üçüncü
kişilere ve bunlarla sınırlı olmaksızın, yurt içinde ve yurt dışında, yukarıda belirtilen amaçlarla
iş ortakları, hizmet alınan üçüncü kişi, yetkilendirilen kişi ve kuruluşlara
aktarılabilecektir.
</li>
</ul>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
<span style="box-sizing: border-box; font-weight: bold; font-family: MetropolisBold, Arial;">KVKK’nın 11. maddesi gereği haklarınız</span>;
Şirketimize başvurarak, kişisel verilerinizin;</p>
<ol style="box-sizing: border-box; margin: 0px; padding: 15px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: inherit; font-family: MetropolisLight, Arial; vertical-align: baseline; list-style: none;">
<li style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: decimal;">
İşlenip işlenmediğini öğrenme,
</li>
<li style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: decimal;">
İşlenmişse bilgi talep etme,
</li>
<li style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: decimal;">
İşlenme amacını ve amacına uygun kullanılıp kullanılmadığını öğrenme,
</li>
<li style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: decimal;">
Yurt içinde / yurt dışında aktarıldığı 3. kişileri bilme,
</li>
<li style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: decimal;">
Eksik / yanlış işlenmişse düzeltilmesini isteme,
</li>
<li style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: decimal;">
KVKK’nın 7. maddesinde öngörülen şartlar çerçevesinde silinmesini / yok
edilmesini isteme,
</li>
<li style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: decimal;">
Aktarıldığı 3. kişilere yukarıda sayılan (e) ve (f) bentleri uyarınca yapılan işlemlerin bildirilmesini
isteme,
</li>
<li style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: decimal;">
Münhasıran otomatik sistemler ile analiz edilmesi nedeniyle aleyhinize bir sonucun ortaya çıkmasına
itiraz etme,
</li>
<li style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; list-style-type: decimal;">
Kanuna aykırı olarak işlenmesi sebebiyle zarara uğramanız hâlinde zararın giderilmesini talep etme
haklarına sahipsiniz.
</li>
</ol>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
KVK Kanunu’nun 13. maddesinin 1. fıkrası gereğince, yukarıda belirtilen haklarınızı kullanmak ile ilgili
talebinizi, yazılı olarak veya Kişisel Verileri Koruma Kurulu’nun belirlediği diğer yöntemlerle
Şirketimize iletebilirsiniz.</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
</p>
<p style="box-sizing: border-box; margin: 0px; padding: 0px; border: 0px; font-variant-numeric: inherit; font-variant-east-asian: inherit; font-stretch: inherit; font-size: 15px; line-height: 28px; font-family: MetropolisLight, Arial; vertical-align: baseline;">
Yukarıda belirtilen haklarınızı kullanmak için kimliğinizi tespit edici gerekli bilgiler ile talep dilekçenizi
bizzat elden teslim edebilir, noter kanalıyla veya Kişisel Verileri Koruma Kurulu tarafından belirlenen diğer yöntemler
ile gönderebilir veya <a href="mailto:info@codenteq.com"
style="box-sizing: border-box; background-color: transparent; color: #337ab7; margin: 0px; padding: 0px; border: 0px; font: inherit; vertical-align: baseline; text-decoration-line: none !important; outline: none !important;">info@codenteq.com</a> adresine
güvenli olarak iletebilirsiniz.</p>
</div>
</body>
</html>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/quiz.blade.php | resources/views/user/quiz.blade.php | <!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="icon" href="<{{companyLogo()}}>">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
<title>Sınav</title>
<link href="/css/app.655e2511.css" rel="preload" as="style">
<link href="/css/chunk-vendors.d1c25f40.css" rel="preload" as="style">
<link href="/js/app.c45bbc61.js" rel="preload" as="script">
<link href="/js/chunk-vendors.7b1f985d.js" rel="preload" as="script">
<link href="/css/chunk-vendors.d1c25f40.css" rel="stylesheet">
<link href="/css/app.655e2511.css" rel="stylesheet">
</head>
<body>
<noscript><strong>We're sorry but quiz-app doesn't work properly without JavaScript enabled. Please enable it to
continue.</strong></noscript>
<div id="app"></div>
<script src="/js/chunk-vendors.7b1f985d.js"></script>
<script src="/js/app.c45bbc61.js"></script>
</body>
</html>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/profile.blade.php | resources/views/user/profile.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('user/menu.profile')}}</h2>
</blockquote>
</figure>
<div class="row">
<div class="col-12 col-lg-12">
<form name="form-data">
@csrf @method('PUT')
<div class="form-floating mb-3">
<input type="text" class="form-control" id="floatingFirst"
name="name"
value="{{$user->user->name}}">
<label for="floatingFirst">{{__('user/profile.name')}}</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="floatingLast"
name="surname"
value="{{$user->user->surname}}">
<label for="floatingLast">{{__('user/profile.surname')}}</label>
</div>
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingMail"
name="email"
value="{{$user->user->email}}">
<label for="floatingMail">{{__('user/profile.email_address')}}</label>
</div>
<div class="form-floating mb-3">
<input type="password" class="form-control" id="floatingMail"
name="password">
<label for="floatingMail">{{__('user/profile.new_password')}}</label>
</div>
<div class="form-floating mb-3">
<input type="password" class="form-control" id="floatingMail"
name="password_confirmation">
<label for="floatingMail">{{__('user/profile.new_password_repeat')}}</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="floatingPhone"
name="phone"
value="{{$user->phone}}">
<label for="floatingPhone">{{__('user/profile.phone')}}</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="floatingAddress"
name="address"
value="{{$user->address}}">
<label for="floatingAddress">{{__('user/profile.address')}}</label>
</div>
<div class="form-floating mb-3">
<select class="form-select" id="floatingSelect" name="languageId" aria-label="Floating label select example">
@foreach($languages as $language)
<option
value="{{$language->id}}" {{$language->id == $user->languageId ? 'selected' : null}}>{{$language->title}}</option>
@endforeach
</select>
<label for="floatingSelect">{{__('user/profile.language')}}...</label>
</div>
<div class="input-group">
<input type="file" class="form-control" name="photo">
<label class="input-group-text" for="inputGroupFile02">{{__('user/profile.profile_photo')}}</label>
</div>
<div class="mt-3">
<button type="button" onclick="createAndUpdateButton()" class="btn btn-success">{{__('user/profile.save_btn')}}</button>
<a href="{{route('user.dashboard')}}" class="btn btn-danger">{{__('user/profile.cancel_btn')}}</a>
</div>
</form>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('user/menu.profile')}}</title>
@endsection
@section('css')
@include('partials.stylesheet')
@endsection
@section('js')
<script>
const actionUrl = '{{route('user.profile.update')}}';
const backUrl = '{{route('user.profile')}}';
</script>
@include('partials.script')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/index.blade.php | resources/views/user/index.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('user/menu.home')}}</h2>
</blockquote>
</figure>
<div class="container text-center">
<div class="row row-cols-2 d-flex justify-content-between"></div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('user/menu.panel')}}</title>
@endsection
@section('css')
@endsection
@section('js')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/class-exams.blade.php | resources/views/user/class-exams.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('user/menu.class_exam')}}</h2>
</blockquote>
</figure>
<div class="row">
<div class="col-12 col-lg-12 overflow-auto">
<table id="data-table" class="table table-striped" style="width:100%">
<thead>
<tr>
<th scope="col">{{__('user/my-class-exam.question_length')}}</th>
<th scope="col">{{__('user/my-class-exam.time')}}</th>
<th scope="col">{{__('user/my-class-exam.transactions')}}</th>
</tr>
</thead>
<tbody>
@foreach($classExams as $exam)
<tr>
<td>{{$exam->class_exam_question_type_sum_length}}</td>
<td>{{examTime($exam->class_exam_question_type_sum_length)}}</td>
<td>
<a href="{{route('user.quiz.class')}}?class={{$exam->id}}" class="btn btn-success">
{{__('user/my-class-exam.start_exam')}}
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('user/menu.class_exam')}}</title>
@endsection
@section('css')
@include('layouts.stylesheet')
@endsection
@section('js')
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
@include('layouts.script')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/notifications.blade.php | resources/views/user/notifications.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('user/menu.notification')}}</h2>
</blockquote>
</figure>
<div class="row">
<div class="col-12 col-lg-12 overflow-auto">
<table id="data-table" class="table table-striped">
<thead>
<tr>
<th scope="col">{{__('user/notification.message')}}</th>
<th scope="col">{{__('user/notification.date')}}</th>
</tr>
</thead>
<tbody>
@foreach ($notifications as $notification)
<tr>
<td>{{$notification->notification->message}}</td>
<td>{{$notification->created_at}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('user/menu.notification')}}</title>
@endsection
@section('css')
@include('layouts.stylesheet')
@endsection
@section('js')
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
@include('layouts.script')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/exams.blade.php | resources/views/user/exams.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('user/menu.online_exam')}}</h2>
</blockquote>
</figure>
<div class="container align-content-center">
<div class="row">
<div class="col-9">
<h4 class="text-start">{{__('user/my-online-exam.user_guide')}}</h4>
<hr>
<ul>
<li>
{{__('user/my-online-exam.guaide_1')}}
</li>
<li>
{{__('user/my-online-exam.guaide_2')}}
</li>
<li>
{{__('user/my-online-exam.guaide_3')}}
</li>
<li>
{{__('user/my-online-exam.guaide_4')}}
</li>
<li>
{{__('user/my-online-exam.guaide_5')}}
</li>
<li>
{{__('user/my-online-exam.guaide_6')}}
</li>
</ul>
</div>
<div class="col-4 exams">
<a href="{{route('user.quiz.normal')}}" target="_blank">
<div class="p-3 border bg-primary text-light rounded-3">
<h3>{{__('user/my-online-exam.normal_exam')}}</h3><br>
<small>{{__('user/my-online-exam.normal_exam_detail')}}</small>
</div>
</a>
</div>
<div class="col-4 exams">
<a href="{{route('user.custom-exam-setting')}}">
<div class="p-3 border bg-success text-light rounded-3">
<h3>{{__('user/my-online-exam.custom_exam')}}</h3><br>
<small>{{__('user/my-online-exam.custom_exam_detail')}}</small>
</div>
</a>
</div>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('user/menu.online_exam')}}</title>
@endsection
@section('css')
@endsection
@section('js')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/custom-exam.blade.php | resources/views/user/custom-exam.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('user/menu.custom_exam_add')}}</h2>
</blockquote>
</figure>
<div class="row">
<div class="col-12 col-lg-12">
<form class="form-control" method="get" onchange="changeValue()">
<input type="hidden" name="custom_exam" value="true">
@foreach($types as $type)
<label class="form-label">{{$type->title}}</label>
<div class="input-group mb-3">
<input name="{{$type->id}}" type="range" class="form-range" min="1" max="25"
oninput="this.nextElementSibling.value = this.value">
<output>13</output>
</div>
@endforeach
<div class="col-md-3 rounded mb-5">
<label class="fw-bold text-danger">
{{__('user/my-class-exam.question_length')}} : <span id="total"></span>
</label>
</div>
<div class="mt-3 mb-5">
<button type="submit" class="btn btn-success">{{__('user/my-class-exam.save_btn')}}</button>
<a href="{{route('user.exams')}}" class="btn btn-danger">{{__('user/my-class-exam.cancel_btn')}}</a>
</div>
</form>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>Özel Sınav Oluştur</title>
@endsection
@section('css')
<link rel="stylesheet" href="{{asset('/plugins/toastr/toastr.min.css')}}">
@include('layouts.stylesheet')
@endsection
@section('js')
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="{{asset('/plugins/toastr/toastr.min.js')}}"></script>
<script src="{{asset('/plugins/toastr/custom-toastr.js')}}"></script>
<script>
let output = document.getElementsByTagName("output");
var total = 0;
for (let item of output) {
let itemOutput = parseInt(item.textContent);
total += itemOutput;
}
document.querySelector('#total').innerHTML = total;
function changeValue() {
let output = document.getElementsByTagName("output");
var total = 0;
for (let item of output) {
let itemOutput = parseInt(item.textContent);
total += itemOutput;
}
document.querySelector('#total').innerHTML = total;
}
</script>
@include('layouts.script')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/live-lessons.blade.php | resources/views/user/live-lessons.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('user/menu.live_lesson')}}</h2>
</blockquote>
</figure>
<div class="row">
<div class="col-12 col-lg-12 overflow-auto">
<table id="data-table" class="table table-striped">
<thead>
<tr>
<th scope="col">{{__('user/my-live-lesson.lesson_name')}}</th>
<th scope="col">{{__('user/my-live-lesson.join_lesson')}}</th>
<th scope="col">{{__('user/my-live-lesson.lesson_category')}}</th>
<th scope="col">{{__('user/my-live-lesson.lesson_date')}}</th>
</tr>
</thead>
<tbody>
@foreach($liveLessons as $liveLesson)
<tr>
<td>{{$liveLesson->title}}</td>
<td>
<a class="btn btn-success" target="_blank"
href="{{url($liveLesson->url)}}">{{__('user/my-live-lesson.join_btn')}}</a>
</td>
<td>{{$liveLesson->type->title}}</td>
<td>{{$liveLesson->live_date}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('user/menu.live_lesson')}}</title>
@endsection
@section('css')
@include('layouts.stylesheet')
@endsection
@section('js')
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
@include('layouts.script')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/support.blade.php | resources/views/user/support.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('user/menu.support')}}</h2>
</blockquote>
</figure>
<div class="row">
<form class="p-5" name="form-data">
<div class="form-floating mb-3">
<input type="text" class="form-control" id="floatingWhy" name="subject" placeholder="İletişim Nedeniniz?">
<label for="floatingWhy">{{__('user/support.contact_why')}}</label>
</div>
<div class="form-floating">
<textarea class="form-control" placeholder="Mesajınız" name="message" id="floatingTextarea"
style="height: 100px"></textarea>
<label for="floatingTextarea">{{__('user/support.message')}}</label>
</div>
<div class="mt-3">
<button type="button" onclick="createAndUpdateButton()" class="btn btn-success">{{__('user/support.send_btn')}}</button>
</div>
</form>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('user/menu.support')}}</title>
@endsection
@section('css')
@include('partials.stylesheet')
@endsection
@section('js')
<script>
const actionUrl = '{{route('user.support.store')}}';
const backUrl = '{{route('user.support')}}';
</script>
@include('partials.script')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/results/index.blade.php | resources/views/user/results/index.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('user/menu.exam_result')}}</h2>
</blockquote>
</figure>
<div class="container">
<div class="row row-cols-2 row-cols-lg-5 g-2 g-lg-3">
<div class="col">
<div class="p-3 border bg-light rounded-3">
<small>{{__('user/my-exam-result.number_test_solved')}}</small>
<h4>{{$tests->count()}}</h4>
</div>
</div>
<div class="col">
<div class="p-3 border bg-light rounded-3">
<small>{{__('user/my-exam-result.total_correct_length')}}</small>
<h4>{{$tests->sum('correct')}}</h4>
</div>
</div>
<div class="col">
<div class="p-3 border bg-light rounded-3">
<small>{{__('user/my-exam-result.total_incorrect_length')}}</small>
<h4>{{$tests->sum('in_correct')}}</h4>
</div>
</div>
<div class="col">
<div class="p-3 border bg-light rounded-3">
<small>{{__('user/my-exam-result.total_blank_question_length')}}</small>
<h4>{{$tests->sum('blank_question')}}</h4>
</div>
</div>
<div class="col">
<div class="p-3 border bg-light rounded-3">
<small>{{__('user/my-exam-result.average_point')}}</small>
<h4>{{totalPoint($tests->sum('correct'), $tests->sum('test_question_count'))}}</h4>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="row mt-5">
<div class="col-6">
<h4>{{__('user/my-exam-result.my_exams')}}</h4>
</div>
<div class="col-12 col-lg-12 overflow-auto">
<table id="data-table" class="table table-striped">
<thead>
<tr>
<th scope="col">id</th>
<th scope="col">{{__('user/my-exam-result.question_length')}}</th>
<th scope="col">{{__('user/my-exam-result.time')}}</th>
<th scope="col">{{__('user/my-exam-result.point')}}</th>
<th scope="col">{{__('user/my-exam-result.result')}}</th>
<th scope="col">{{__('user/my-exam-result.detail')}}</th>
<th scope="col">{{__('user/my-exam-result.date')}}</th>
</tr>
</thead>
<tbody>
@foreach ($tests as $test)
<tr>
<th scope="row">{{$test->testId}}</th>
<td>{{$test->test_question_count}}</td>
<td>{{examTime($test->test_question_count)}}</td>
<th>{{$test->point}}</th>
<td class="{{resultStatus($test->point) == 'Başarılı' ? 'text-success' : 'text-danger'}} fw-bold">{{resultStatus($test->point)}}</td>
<td>
<a href="{{route('user.result.detail',$test->id)}}" class="btn btn-success">{{__('user/my-exam-result.exam_detail_btn')}}</a>
</td>
<td>{{$test->created_at}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('user/menu.exam_result')}}</title>
@endsection
@section('css')
@include('layouts.stylesheet')
@endsection
@section('js')
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
@include('layouts.script')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/results/view.blade.php | resources/views/user/results/view.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>Sınav Sonuç Detay</h2>
</blockquote>
</figure>
<div class="container">
<div class="row">
<div class="col-md-6 mb-2">
<div class="col-md-12 p-2">
<div class="p-3 border bg-light rounded-3">
<small>Toplam Soru Sayısı</small>
<h4>{{$result->total_question}}</h4>
</div>
</div>
<div class="col-md-12 mt-1 p-2">
<div class="p-3 border bg-light rounded-3">
<small>Sınav Puanı</small>
<h4>{{$result->point}}</h4>
</div>
</div>
<div class="col-md-12 mt-1 p-2">
<div class="p-3 border bg-light rounded-3">
<small>Sonuç</small>
<h4 class="{{resultStatus($result->point) == 'Başarılı' ? 'text-success' : 'text-danger'}}">{{resultStatus($result->point)}}</h4>
</div>
</div>
</div>
<div class="col-md-6 bg-light rounded">
<ul class="nav nav-pills mb-3 p-3" id="pills-tab" role="tablist">
@foreach($tests as $test)
<li class="nav-item" role="presentation">
<button class="nav-link @if ($loop->first) active @endif"
id="type-{{$test->id}}-tab"
data-bs-toggle="pill"
data-bs-target="#type-{{$test->id}}" type="button" role="tab"
aria-controls="type-{{$test->id}}"
@if ($loop->first) aria-selected="true"
@else aria-selected="false" @endif>{{$test->type->title}}
</button>
</li>
@endforeach
</ul>
<div class="tab-content" id="pills-tabContent">
@foreach($tests as $test)
<div class="tab-pane fade @if($loop->first) show active @endif" id="type-{{$test->id}}"
role="tabpanel"
aria-labelledby="type-{{$test->id}}">
<ul class="list-group list-group-flush">
<li class="list-group-item bg-light">Soru Sayısı
: {{$test->total_question}}</li>
<li class="list-group-item bg-light">Doğru Sayısı : {{$test->correct}}</li>
<li class="list-group-item bg-light">Yanlış Sayısı : {{$test->in_correct}}</li>
<li class="list-group-item bg-light">Boş Sayısı : {{$test->blank_question}}</li>
</ul>
</div>
@endforeach
</div>
</div>
</div>
</div>
</section>
<section class="container mt-5">
<div class="row mx-auto">
@foreach($tests as $test)
<div class="col-md-3 col-sm-12 mb-2">
<div class="card p-3 " style="width: 18rem;">
<div class="card-body">
<h5 class="card-title">{{$test->type->title}}</h5>
<canvas id="chart{{$test->id}}" width="100%" height="100%"></canvas>
</div>
</div>
</div>
@endforeach
</div>
</section>
</div>
@endsection
@section('meta')
<title>Sınav Sonuç Detay</title>
@endsection
@section('css')
@endsection
@section('js')
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.5.1/chart.min.js"></script>
<script>
@foreach($tests as $test)
let ctx{{$test->id}} = document.getElementById('chart{{$test->id}}');
let chart{{$test->id}} = new Chart(ctx{{$test->id}}, {
type: 'doughnut',
data: {
labels: [
'Doğru',
'Yanlış',
'Boş'
],
datasets: [{
label: 'My First Dataset',
data: [{{$test->correct}}, {{$test->in_correct}}, {{$test->blank_question}}],
backgroundColor: [
'rgb(17,255,0)',
'rgb(232,18,18)',
'rgb(0,218,255)'
],
hoverOffset: 4
}]
},
});
@endforeach
</script>
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/lesson/index.blade.php | resources/views/user/lesson/index.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('user/menu.my_lesson')}}</h2>
</blockquote>
</figure>
<div class="row">
<form class="form-control" action="{{route('user.lesson.index')}}" method="get">
<div class="form-floating mb-3">
<select class="form-select" onchange="this.form.submit()" name="type"
aria-label="Floating label select example">
<option disabled selected>{{__('user/my-lesson.select')}}</option>
@foreach($types as $type)
<option value="{{$type->id}}" {{$type->id == request()->get('type') ? 'selected' : null}}>{{$type->title}}</option>
@endforeach
</select>
<label for="floatingSelect">{{__('user/my-lesson.lesson_category')}}</label>
</div>
</form>
<div class="col-12 col-lg-12 mt-3 overflow-auto">
<table id="data-table" class="table table-striped">
<thead>
<tr>
<th scope="col">{{__('user/my-lesson.title')}}</th>
<th scope="col">{{__('user/my-lesson.attend_class')}}</th>
</tr>
</thead>
<tbody>
@foreach($lessons as $lesson)
<tr>
<td>{{$lesson->title}}</td>
<td>
<a href="{{route('user.lesson.show',$lesson->id)}}">
<i class="bi bi-eye text-dark fs-5"></i>
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('user/menu.my_lesson')}}</title>
@endsection
@section('css')
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
@include('layouts.stylesheet')
@endsection
@section('js')
@include('layouts.script')
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/lesson/view.blade.php | resources/views/user/lesson/view.blade.php | @extends('user.layout.app')
@section('content')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{$lesson->title}}</h2>
</blockquote>
</figure>
<div class="row">
<div class="col-12 col-lg-12">
<div class="gap-audio player-accessible w-100">
<audio>
<source src="{{imagePath($lesson->file)}}" type="audio/mpeg">
</audio>
</div>
<article class="mt-3 p-3">
<p>
{!! $lesson->content !!}
</p>
</article>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{$lesson->title}}</title>
@endsection
@section('css')
<link rel="stylesheet" type="text/css"
href="https://cdn.jsdelivr.net/gh/greghub/green-audio-player/dist/css/green-audio-player.min.css">
@endsection
@section('js')
<script src="https://cdn.jsdelivr.net/gh/greghub/green-audio-player/dist/js/green-audio-player.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function () {
new GreenAudioPlayer('.gap-audio', {showTooltips: true, showDownloadButton: true, enableKeystrokes: true});
});
</script>
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/layout/script.blade.php | resources/views/user/layout/script.blade.php | <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="{{asset('js/app.js')}}"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.16.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.16.1/firebase-messaging.js"></script>
<script>
const firebaseConfig = {
apiKey: "AIzaSyBUns1e3HP2upPDJJlB5P0RTrzIshIJXAc",
authDomain: "codenteq-d84d9.firebaseapp.com",
projectId: "codenteq-d84d9",
storageBucket: "codenteq-d84d9.appspot.com",
messagingSenderId: "325466526937",
appId: "1:325466526937:web:ae87a4b499ae76ddc61ac8"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
const messaging = firebase.messaging();
messaging.requestPermission()
.then(function () {
console.log('Notification permission granted.');
return messaging.getToken()
})
.then(function (token) {
axios.post('{{route('user.token')}}', {
'userId': {{auth()->id()}},
'token': token
})
})
.catch(function (err) {
console.log('Unable to get permission to notify.', err);
});
</script>
<script src="https://cdn.jsdelivr.net/npm/vanilla-masker@1.1.1/build/vanilla-masker.min.js"></script>
<script>
VMasker(document.getElementsByName('phone')).maskPattern("(999) 999-9999");
localStorage.setItem('auth',{{auth()->id()}});
</script>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/layout/stylesheet.blade.php | resources/views/user/layout/stylesheet.blade.php | <!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-9FJZSZQ37J"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-9FJZSZQ37J');
</script>
<link rel="stylesheet" href="{{asset('css/app.css')}}">
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/layout/app.blade.php | resources/views/user/layout/app.blade.php | <!DOCTYPE html>
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="UTF-8">
<meta name="csrf-token" content="{{ csrf_token() }}">
<meta name="dc.language" content="{{ app()->getLocale() }}">
<meta http-equiv="content-language" content="{{ app()->getLocale() }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="Quiz app uygulaması codenteq adı altında yazılmış bir online sınav uygulamasıdır.">
<meta name="generator" content="Quiz App">
@yield('meta')
<link rel="icon" href="{{asset('images/favicon.png')}}" type="image/x-icon"/>
@include('user.layout.stylesheet')
@yield('css')
</head>
<body>
<div class="d-flex" id="wrapper">
<div class="border-end d-flex d-sm-flex" id="sidebar-wrapper">
<div class="sidebar-heading border-bottom fw-bold">
<div class="list-group list-group-flush sidebar-menu">
<a class="sidebar-logo-link d-md-none d-lg-none d-xl-none d-xxl-none" href="{{route('user.dashboard')}}">
<img class="sidebar-logo" src="{{companyLogo()}}" alt="logo">
</a>
@include('user.layout.partials.sidebar')
</div>
</div>
</div>
<div class="sidebar-toggle-button">
<a class="btn btn-light" id="sidebarToggle"><i class="bi bi-list fs-4"></i></a>
</div>
<div id="page-content-wrapper">
@include('user.layout.partials.navbar-top')
<div class="content-app">
@yield('content')
</div>
@include('user.layout.partials.navbar')
</div>
</div>
</body>
@include('user.layout.script')
@yield('js')
</html>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/layout/partials/navbar.blade.php | resources/views/user/layout/partials/navbar.blade.php | <nav
class="navbar fixed-bottom bottom-navigation-mb d-flex justify-content-around d-md-none d-lg-none d-xl-none d-xxl-none">
<ul class="navbar-list mx-auto ">
<li class="navbar-item">
<a class="navbar-link" id="sidebarToggleM">
<i class="bi bi-list navbar-link-icon"></i>
</a>
</li>
<li class="navbar-item">
<a class="navbar-link {{ request()->is('user/exams*') ? 'active' : '' }}"
href="{{route('user.exams')}}">
<i class="bi bi-laptop navbar-link-icon"></i>
</a>
</li>
<li class="navbar-item">
<a class="navbar-link {{ request()->is('user/dashboard') ? 'active' : '' }}"
href="{{route('user.dashboard')}}">
<i class="bi bi-house navbar-link-icon"></i>
</a>
</li>
<li class="navbar-item">
<a class="navbar-link {{ request()->is('user/notifications*') ? 'active' : '' }}"
href="{{route('user.notifications')}}">
<i class="bi bi-bell navbar-link-icon"></i>
</a>
</li>
<li class="navbar-item">
<a class="navbar-link {{ request()->is('user/profile*') ? 'active' : '' }}"
href="{{route('user.profile')}}">
<i class="bi bi-person navbar-link-icon"></i>
</a>
</li>
<div class="navbar-underscore"></div>
</ul>
</nav>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/layout/partials/sidebar.blade.php | resources/views/user/layout/partials/sidebar.blade.php | <a class="sidebar-menu-list">
<a class="list-group-item list-group-item-action d-md-none d-lg-none d-xl-none d-xxl-none" type="button"
id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
<div class="profile-info-icon-sidebar me-1"><span>{{ auth()->user()->name[0] }}</span></div>
<span class="sidebar-menu-text fs-6">{{auth()->user()->name .' '. auth()->user()->surname}}</span>
<i class="bi bi-chevron-down sidebar-toggle-icon me-1"></i>
</a>
<ul class="dropdown-menu sidebar-dropdown-open d-md-none d-lg-none d-xl-none d-xxl-none"
aria-labelledby="dropdownMenuButton1">
<span class="text-secondary ms-2">ACCOUNT</span>
<li><a class="dropdown-item" href="{{route('user.profile')}}">{{__('user/menu.profile')}}</a></li>
<li><a class="dropdown-item" href="{{route('logout-user')}}">{{__('user/menu.logout')}}</a></li>
</ul>
<a class="list-group-item list-group-item-action d-none d-md-block text-left {{ request()->is('user/dashboard') ? 'active' : '' }}"
href="{{route('user.dashboard')}}">
<i class="bi bi-house fs-4"></i>
<span class="sidebar-menu-text">{{__('user/menu.home')}}</span>
</a>
<a class="list-group-item list-group-item-action text-left {{ request()->is('user/lesson*') ? 'active' : '' }}"
href="{{route('user.lesson.index')}}">
<i class="bi bi-book fs-4"></i>
<span class="sidebar-menu-text">{{__('user/menu.my_lesson')}}</span>
</a>
<a class="list-group-item list-group-item-action d-none d-md-block text-left {{ request()->is('user/exams') ? 'active' : '' }} {{ request()->is('user/custom-exam-setting*') ? 'active' : '' }}"
href="{{route('user.exams')}}">
<i class="bi bi-laptop fs-4"></i>
<span class="sidebar-menu-text">{{__('user/menu.online_exam')}}</span>
</a>
<a class="list-group-item list-group-item-action text-left {{ request()->is('user/class-exams') ? 'active' : '' }}"
href="{{route('user.class-exams')}}">
<i class="bi bi-people fs-4"></i>
<span class="sidebar-menu-text">{{__('user/menu.class_exam')}}</span>
</a>
<a class="list-group-item list-group-item-action text-left {{ request()->is('user/result') ? 'active' : '' }}"
href="{{route('user.results')}}">
<i class="bi bi-file-earmark-text fs-4"></i>
<span class="sidebar-menu-text">{{__('user/menu.exam_result')}}</span>
</a>
<a class="list-group-item list-group-item-action text-left {{ request()->is('user/appointment') ? 'active' : '' }}"
href="{{route('user.appointment.index')}}">
<i class="bi bi-calendar4-range fs-4"></i>
<span class="sidebar-menu-text">{{__('user/menu.my_appointment')}}</span>
</a>
<a class="list-group-item list-group-item-action text-left {{ request()->is('user/live-lessons') ? 'active' : '' }}"
href="{{route('user.live-lessons')}}">
<i class="bi bi-camera-video fs-4"></i>
<span class="sidebar-menu-text">{{__('user/menu.live_lesson')}}</span>
</a>
<a class="list-group-item list-group-item-action text-left d-md-none d-lg-none d-xl-none d-xxl-none {{ request()->is('user/support') ? 'active' : '' }}"
href="{{route('user.support')}}">
<i class="bi bi-info-circle fs-4"></i>
<span class="sidebar-menu-text">{{__('user/menu.support')}}</span>
</a>
</a>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/layout/partials/navbar-top.blade.php | resources/views/user/layout/partials/navbar-top.blade.php | <nav class="navbar-top navbar navbar-expand-lg navbar-light bg-light border-bottom d-none d-md-block">
<div class="container-fluid">
<a class="navbar-logo-link" href="{{route('user.dashboard')}}">
<img class="sidebar-logo" src="{{companyLogo()}}" alt="logo">
</a>
<div class="collapse navbar-collapse d-none d-sm-block" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mt-2 mt-lg-0">
<li class="nav-item me-2">
<a href="{{route('user.support')}}" class="nav-link navbar-border">
<i class="bi bi-info-circle fs-4 ms-2"></i>
</a>
</li>
<li class="nav-item me-2">
<a href="{{route('user.notifications')}}" class="nav-link navbar-border">
<i class="bi bi-bell fs-4 ms-2"></i>
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link navbar-border" id="navbarDropdown" href="#" role="button"
data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
@if(!auth()->user()->info->photo)
<div class="profile-info-icon-nav"><span>{{ auth()->user()->name[0] }}</span></div>
<span class="name">
{{auth()->user()->name .' '. auth()->user()->surname}}
<p class="role">{{auth()->user()->type == 4 ? 'Student' : 'null'}}</p>
</span>
@else
<img src="{{imagePath(auth()->user()->info->photo)}}" class="rounded-circle me-1"
height="30" alt="">
<span class="name">
{{auth()->user()->name .' '. auth()->user()->surname}}
<p class="role">{{auth()->user()->type == 4 ? 'Student' : 'null'}}</p>
</span>
@endif
<i class="bi bi-chevron-down sidebar-toggle-icon me-1"></i>
</a>
<div class="dropdown-menu dropdown-menu-end navbar-dropdown-open" aria-labelledby="navbarDropdown">
<span class="text-secondary ms-2">ACCOUNT</span>
<a class="dropdown-item" href="{{route('user.profile')}}">{{__('user/menu.profile')}}</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="{{route('logout-user')}}">{{__('user/menu.logout')}}</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
codenteq/laerx | https://github.com/codenteq/laerx/blob/1beced57923761b2f07ca20030a4df11eb05b732/resources/views/user/appointments/index.blade.php | resources/views/user/appointments/index.blade.php | @extends('user.layout.app')
@section('content')
@include('user.appointments.create')
<div class="container-fluid">
<section class="content">
<figure>
<blockquote class="blockquote">
<h2>{{__('user/menu.my_appointment')}}</h2>
</blockquote>
</figure>
<div class="row">
<div class="col-12 col-lg-12 mb-3">
<button type="button" class="btn btn-success" data-bs-toggle="modal"
data-bs-target="#createAppointment">
{{__('user/my-appointment.create_appontment')}}
</button>
</div>
<div class="col-12 col-lg-12 overflow-auto">
<table id="data-table" class="table table-striped">
<thead>
<tr>
<th scope="col">{{__('user/my-appointment.teacher')}}</th>
<th scope="col">{{__('user/my-appointment.date')}}</th>
<th scope="col">{{__('user/my-appointment.status')}}</th>
</tr>
</thead>
<tbody>
@foreach ($appointments as $appointment)
<tr>
<th scope="row">{{$appointment->user->name .' '. $appointment->user->surname}}</th>
<td>{{$appointment->date}}</td>
<td class="{{$appointment->status == 1 ? 'text-success' : 'text-danger'}}">{{$appointment->status == 1 ? 'Aktif' : 'Pasif'}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</section>
</div>
@endsection
@section('meta')
<title>{{__('user/menu.my_appointment')}}</title>
@endsection
@section('css')
<link rel="stylesheet" href="{{asset('/plugins/toastr/toastr.min.css')}}">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">
@include('layouts.stylesheet')
@endsection
@section('js')
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
@include('layouts.script')
<script src="{{asset('/plugins/toastr/toastr.min.js')}}"></script>
<script src="{{asset('/plugins/toastr/custom-toastr.js')}}"></script>
<script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
<script src="https://npmcdn.com/flatpickr/dist/l10n/tr.js"></script>
<script>
const dateInput = document.querySelector("#date");
const fp = flatpickr(dateInput, {
locale: "tr",
minDate: "today",
disableMobile: "true"
}); // flatpickr
</script>
<script>
const actionUrl = '{{route('user.appointment.store')}}';
const backUrl = '{{route('user.appointment.index')}}';
</script>
<script src="{{asset('js/post.js')}}"></script>
@endsection
| php | MIT | 1beced57923761b2f07ca20030a4df11eb05b732 | 2026-01-05T05:20:28.495862Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.