Skip to content
View sentiasa's full-sized avatar
👊
Focused
👊
Focused

Organizations

@Kodeas

Block or report sentiasa

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Kodeas/publicise Kodeas/publicise Public

    Publicise lets you test the private or protected properties and methods in your classes

    PHP 1

  2. Vite setup for Laravel, Inertia, Vue... Vite setup for Laravel, Inertia, Vue, Tailwind
    1
    import 'vite/dynamic-import-polyfill';
    2
    import '../css/app.css';
    3
    import { createApp, h } from 'vue'
    4
    import { App, plugin } from '@inertiajs/inertia-vue3'
    5
    
                  
  3. Laravel Bulk/Mass Update Laravel Bulk/Mass Update
    1
    <?php
    2
    
                  
    3
    $vat = 0.20;
    4
    $transactions = Transaction::get();
    5
    
                  
  4. Laravel - Query +100k placeholders i... Laravel - Query +100k placeholders in Laravel using `whereIn()`
    1
    <?php 
    2
    
                  
    3
    $transactionIds = Transaction::pluck('id'); // +100k transaction ids
    4
    
                  
    5
    $maxAtOneTime = 5000;
  5. Command for retrying failed horizon ... Command for retrying failed horizon jobs
    1
    <?php
    2
    
                  
    3
    use Laravel\Horizon\Contracts\JobRepository;
    4
    use Laravel\Horizon\Jobs\RetryFailedJob;
    5