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 |
|---|---|---|---|---|---|---|---|---|
pktharindu/nova-permissions | https://github.com/pktharindu/nova-permissions/blob/6f4fcb125558d41304440cd3029944a0a840df19/src/Nova/Role.php | src/Nova/Role.php | <?php
namespace Pktharindu\NovaPermissions\Nova;
use Laravel\Nova\Fields\Slug;
use Laravel\Nova\Http\Requests\NovaRequest;
use Laravel\Nova\Resource;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Fields\BelongsToMany;
use Pktharindu\NovaPermissions\Checkboxes;
use Pktharindu\NovaPermissio... | php | MIT | 6f4fcb125558d41304440cd3029944a0a840df19 | 2026-01-05T05:01:00.821895Z | false |
pktharindu/nova-permissions | https://github.com/pktharindu/nova-permissions/blob/6f4fcb125558d41304440cd3029944a0a840df19/src/Providers/AuthServiceProvider.php | src/Providers/AuthServiceProvider.php | <?php
namespace Pktharindu\NovaPermissions\Providers;
use Illuminate\Support\Facades\Gate;
use Pktharindu\NovaPermissions\Traits\ValidatesPermissions;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
class AuthServiceProvider extends ServiceProvider
{
use ValidatesPermissions;
... | php | MIT | 6f4fcb125558d41304440cd3029944a0a840df19 | 2026-01-05T05:01:00.821895Z | false |
pktharindu/nova-permissions | https://github.com/pktharindu/nova-permissions/blob/6f4fcb125558d41304440cd3029944a0a840df19/src/Policies/Policy.php | src/Policies/Policy.php | <?php
namespace Pktharindu\NovaPermissions\Policies;
use Illuminate\Support\Facades\Gate;
class Policy
{
/**
* Retrieves all registered policies from the Gate. Only policies registered in the application
* can be assigned to groups.
*
* @return array
*/
public static function all()
... | php | MIT | 6f4fcb125558d41304440cd3029944a0a840df19 | 2026-01-05T05:01:00.821895Z | false |
pktharindu/nova-permissions | https://github.com/pktharindu/nova-permissions/blob/6f4fcb125558d41304440cd3029944a0a840df19/config/nova-permissions.php | config/nova-permissions.php | <?php
return [
/*
|--------------------------------------------------------------------------
| User model class
|--------------------------------------------------------------------------
*/
'user_model' => 'App\Models\User',
/*
|------------------------------------------------------... | php | MIT | 6f4fcb125558d41304440cd3029944a0a840df19 | 2026-01-05T05:01:00.821895Z | false |
burzum/cakephp-imagine-plugin | https://github.com/burzum/cakephp-imagine-plugin/blob/c88eaa490dcc60df0914536dbb5da32f78c45b1f/src/Model/Behavior/ImagineBehavior.php | src/Model/Behavior/ImagineBehavior.php | <?php
/**
* Copyright 2011-2016, Florian Krämer
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* Copyright 2011-2016, Florian Krämer
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Burzum\Imagine\Model\Behavior;
u... | php | MIT | c88eaa490dcc60df0914536dbb5da32f78c45b1f | 2026-01-05T05:01:08.087231Z | false |
burzum/cakephp-imagine-plugin | https://github.com/burzum/cakephp-imagine-plugin/blob/c88eaa490dcc60df0914536dbb5da32f78c45b1f/src/Controller/Component/ImagineComponent.php | src/Controller/Component/ImagineComponent.php | <?php
/**
* Copyright 2011-2016, Florian Krämer
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* Copyright 2011-2016, Florian Krämer
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Burzum\Imagine\Controller\Compone... | php | MIT | c88eaa490dcc60df0914536dbb5da32f78c45b1f | 2026-01-05T05:01:08.087231Z | false |
burzum/cakephp-imagine-plugin | https://github.com/burzum/cakephp-imagine-plugin/blob/c88eaa490dcc60df0914536dbb5da32f78c45b1f/src/Lib/ImagineUtility.php | src/Lib/ImagineUtility.php | <?php
/**
* Copyright 2011-2016, Florian Krämer
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* Copyright 2011-2016, Florian Krämer
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Burzum\Imagine\Lib;
use Cake\Co... | php | MIT | c88eaa490dcc60df0914536dbb5da32f78c45b1f | 2026-01-05T05:01:08.087231Z | false |
burzum/cakephp-imagine-plugin | https://github.com/burzum/cakephp-imagine-plugin/blob/c88eaa490dcc60df0914536dbb5da32f78c45b1f/src/Lib/ImageProcessor.php | src/Lib/ImageProcessor.php | <?php
namespace Burzum\Imagine\Lib;
use Cake\Core\InstanceConfigTrait;
use Imagine\Image\ImageInterface;
use Imagine\Image\Point;
use Imagine\Image\Box;
class ImageProcessor {
use InstanceConfigTrait;
/**
* Default settings
*
* @var array
*/
protected $_defaultConfig = [
'engine' => 'Gd'
];
/**
* ... | php | MIT | c88eaa490dcc60df0914536dbb5da32f78c45b1f | 2026-01-05T05:01:08.087231Z | false |
burzum/cakephp-imagine-plugin | https://github.com/burzum/cakephp-imagine-plugin/blob/c88eaa490dcc60df0914536dbb5da32f78c45b1f/src/View/Helper/ImagineHelper.php | src/View/Helper/ImagineHelper.php | <?php
/**
* Copyright 2011-2016, Florian Krämer
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* Copyright 2011-2016, Florian Krämer
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Burzum\Imagine\View\Helper;
use ... | php | MIT | c88eaa490dcc60df0914536dbb5da32f78c45b1f | 2026-01-05T05:01:08.087231Z | false |
burzum/cakephp-imagine-plugin | https://github.com/burzum/cakephp-imagine-plugin/blob/c88eaa490dcc60df0914536dbb5da32f78c45b1f/tests/bootstrap.php | tests/bootstrap.php | <?php
use Cake\Core\Plugin;
$findRoot = function ($root) {
do {
$lastRoot = $root;
$root = dirname($root);
if (is_dir($root . '/vendor/cakephp/cakephp')) {
return $root;
}
} while ($root !== $lastRoot);
throw new \Exception('Cannot find the root of the application, unable to run tests');
};
$root = $fin... | php | MIT | c88eaa490dcc60df0914536dbb5da32f78c45b1f | 2026-01-05T05:01:08.087231Z | false |
burzum/cakephp-imagine-plugin | https://github.com/burzum/cakephp-imagine-plugin/blob/c88eaa490dcc60df0914536dbb5da32f78c45b1f/tests/Fixture/ImageFixture.php | tests/Fixture/ImageFixture.php | <?php
/**
* Copyright 2011-2015, Florian Krämer
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* Copyright 2011-2015, Florian Krämer
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Burzum\Imagine\Test\Fixture;
use... | php | MIT | c88eaa490dcc60df0914536dbb5da32f78c45b1f | 2026-01-05T05:01:08.087231Z | false |
burzum/cakephp-imagine-plugin | https://github.com/burzum/cakephp-imagine-plugin/blob/c88eaa490dcc60df0914536dbb5da32f78c45b1f/tests/TestCase/Model/Behavior/ImagineBehaviorTest.php | tests/TestCase/Model/Behavior/ImagineBehaviorTest.php | <?php
/**
* Copyright 2011-2015, Florian Krämer
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
* Copyright 2011-2015, Florian Krämer
*
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Burzum\Imagine\Test\TestCase\Model\B... | php | MIT | c88eaa490dcc60df0914536dbb5da32f78c45b1f | 2026-01-05T05:01:08.087231Z | false |
burzum/cakephp-imagine-plugin | https://github.com/burzum/cakephp-imagine-plugin/blob/c88eaa490dcc60df0914536dbb5da32f78c45b1f/tests/TestCase/Controller/Component/ImagineComponentTest.php | tests/TestCase/Controller/Component/ImagineComponentTest.php | <?php
/**
* Copyright 2011-2015, Florian Krämer
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* Copyright 2011-2015, Florian Krämer
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Burzum\Imagine\Test\TestCase\Cont... | php | MIT | c88eaa490dcc60df0914536dbb5da32f78c45b1f | 2026-01-05T05:01:08.087231Z | false |
burzum/cakephp-imagine-plugin | https://github.com/burzum/cakephp-imagine-plugin/blob/c88eaa490dcc60df0914536dbb5da32f78c45b1f/tests/TestCase/Lib/ImagineUtilityTest.php | tests/TestCase/Lib/ImagineUtilityTest.php | <?php
/**
* Copyright 2011-2015, Florian Krämer
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* Copyright 2011-2015, Florian Krämer
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Burzum\Imagine\Test\TestCase\Lib;... | php | MIT | c88eaa490dcc60df0914536dbb5da32f78c45b1f | 2026-01-05T05:01:08.087231Z | false |
burzum/cakephp-imagine-plugin | https://github.com/burzum/cakephp-imagine-plugin/blob/c88eaa490dcc60df0914536dbb5da32f78c45b1f/tests/TestCase/View/Helper/ImagineHelperTest.php | tests/TestCase/View/Helper/ImagineHelperTest.php | <?php
/**
* Copyright 2011-2015, Florian Krämer
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* Copyright 2011-2015, Florian Krämer
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Burzum\Imagine\Test\TestCase\View... | php | MIT | c88eaa490dcc60df0914536dbb5da32f78c45b1f | 2026-01-05T05:01:08.087231Z | false |
Treblle/treblle-laravel | https://github.com/Treblle/treblle-laravel/blob/835166e5363913f2377b1e2ed992ce679035f8fd/src/TreblleServiceProvider.php | src/TreblleServiceProvider.php | <?php
declare(strict_types=1);
namespace Treblle\Laravel;
use function config;
use Illuminate\Routing\Router;
use Illuminate\Foundation\Http\Kernel;
use Illuminate\Support\ServiceProvider;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Foundation\Console\AboutCommand;
use Treblle\Laravel\Middlewares\Treb... | php | MIT | 835166e5363913f2377b1e2ed992ce679035f8fd | 2026-01-05T05:01:19.522984Z | false |
Treblle/treblle-laravel | https://github.com/Treblle/treblle-laravel/blob/835166e5363913f2377b1e2ed992ce679035f8fd/src/Jobs/SendTreblleData.php | src/Jobs/SendTreblleData.php | <?php
declare(strict_types=1);
namespace Treblle\Laravel\Jobs;
use Throwable;
use Illuminate\Bus\Queueable;
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Http;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illumina... | php | MIT | 835166e5363913f2377b1e2ed992ce679035f8fd | 2026-01-05T05:01:19.522984Z | false |
Treblle/treblle-laravel | https://github.com/Treblle/treblle-laravel/blob/835166e5363913f2377b1e2ed992ce679035f8fd/src/Exceptions/TreblleException.php | src/Exceptions/TreblleException.php | <?php
declare(strict_types=1);
namespace Treblle\Laravel\Exceptions;
use Exception;
/**
* Treblle Configuration Exception.
*
* Exception thrown when required Treblle configuration is missing or invalid.
* Provides specific factory methods for different configuration errors.
*
* @package Treblle\Laravel\Except... | php | MIT | 835166e5363913f2377b1e2ed992ce679035f8fd | 2026-01-05T05:01:19.522984Z | false |
Treblle/treblle-laravel | https://github.com/Treblle/treblle-laravel/blob/835166e5363913f2377b1e2ed992ce679035f8fd/src/DataProviders/LaravelRequestDataProvider.php | src/DataProviders/LaravelRequestDataProvider.php | <?php
declare(strict_types=1);
namespace Treblle\Laravel\DataProviders;
use Throwable;
use Carbon\Carbon;
use Treblle\Php\Helpers\HeaderFilter;
use Treblle\Php\DataTransferObject\Request;
use Treblle\Php\Helpers\SensitiveDataMasker;
use Treblle\Php\Contract\RequestDataProvider;
use Symfony\Component\HttpFoundation\R... | php | MIT | 835166e5363913f2377b1e2ed992ce679035f8fd | 2026-01-05T05:01:19.522984Z | false |
Treblle/treblle-laravel | https://github.com/Treblle/treblle-laravel/blob/835166e5363913f2377b1e2ed992ce679035f8fd/src/DataProviders/LaravelResponseDataProvider.php | src/DataProviders/LaravelResponseDataProvider.php | <?php
declare(strict_types=1);
namespace Treblle\Laravel\DataProviders;
use Illuminate\Http\Request;
use Illuminate\Http\JsonResponse;
use Treblle\Php\Helpers\HeaderFilter;
use Treblle\Php\DataTransferObject\Error;
use Treblle\Php\Contract\ErrorDataProvider;
use Treblle\Php\DataTransferObject\Response;
use Treblle\P... | php | MIT | 835166e5363913f2377b1e2ed992ce679035f8fd | 2026-01-05T05:01:19.522984Z | false |
Treblle/treblle-laravel | https://github.com/Treblle/treblle-laravel/blob/835166e5363913f2377b1e2ed992ce679035f8fd/src/Middlewares/TreblleMiddleware.php | src/Middlewares/TreblleMiddleware.php | <?php
declare(strict_types=1);
namespace Treblle\Laravel\Middlewares;
use Closure;
use Throwable;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Http\JsonResponse;
use Treblle\Php\Factory\TreblleFactory;
use Treblle\Php\DataTransferObject\Data;
use Treblle\Laravel\Jobs\SendTreblleData;
use... | php | MIT | 835166e5363913f2377b1e2ed992ce679035f8fd | 2026-01-05T05:01:19.522984Z | false |
Treblle/treblle-laravel | https://github.com/Treblle/treblle-laravel/blob/835166e5363913f2377b1e2ed992ce679035f8fd/src/Middlewares/TreblleEarlyMiddleware.php | src/Middlewares/TreblleEarlyMiddleware.php | <?php
declare(strict_types=1);
namespace Treblle\Laravel\Middlewares;
use Closure;
use Illuminate\Http\Request;
/**
* Early Capture Middleware for Treblle Monitoring.
*
* This middleware captures the original request payload before any transformations,
* validations, or modifications occur in subsequent middlew... | php | MIT | 835166e5363913f2377b1e2ed992ce679035f8fd | 2026-01-05T05:01:19.522984Z | false |
Treblle/treblle-laravel | https://github.com/Treblle/treblle-laravel/blob/835166e5363913f2377b1e2ed992ce679035f8fd/src/DataTransferObject/TrebllePayloadData.php | src/DataTransferObject/TrebllePayloadData.php | <?php
declare(strict_types=1);
namespace Treblle\Laravel\DataTransferObject;
use Treblle\Php\DataTransferObject\Data;
/**
* Data Transfer Object for Treblle payload.
*
* This DTO holds the complete extracted payload data that can be safely
* serialized and passed to queue jobs. By extracting data from Request/R... | php | MIT | 835166e5363913f2377b1e2ed992ce679035f8fd | 2026-01-05T05:01:19.522984Z | false |
Treblle/treblle-laravel | https://github.com/Treblle/treblle-laravel/blob/835166e5363913f2377b1e2ed992ce679035f8fd/tests/TestCase.php | tests/TestCase.php | <?php
declare(strict_types=1);
namespace Treblle\Laravel\Tests;
use Orchestra\Testbench\TestCase as BaseTestCase;
final class TestCase extends BaseTestCase
{
}
| php | MIT | 835166e5363913f2377b1e2ed992ce679035f8fd | 2026-01-05T05:01:19.522984Z | false |
Treblle/treblle-laravel | https://github.com/Treblle/treblle-laravel/blob/835166e5363913f2377b1e2ed992ce679035f8fd/config/treblle.php | config/treblle.php | <?php
declare(strict_types=1);
return [
/*
* Enable or disable Treblle monitoring
*/
'enable' => env('TREBLLE_ENABLE', true),
/*
* An override while debugging.
*/
'url' => null,
/*
* Your Treblle SDK Token. You can get started for FREE by visiting https://treblle.com/
... | php | MIT | 835166e5363913f2377b1e2ed992ce679035f8fd | 2026-01-05T05:01:19.522984Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/server.php | server.php | <?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. Thi... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Producto.php | app/Producto.php | <?php
/*
____ _____ _ _ _
| _ \ | __ \ (_) | | |
| |_) |_ _ | |__) |_ _ _ __ _____| |__ _ _| |_ ___
| _ <| | | | | ___/ _` | '__|_ / | '_ \| | | | __/ _ \
| |_) | |_| | | | | (_| | | / /| | |_) | |_| | || __/
|____/ \__, | ... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/User.php | app/User.php | <?php
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Passport\HasApiTokens;
class User extends Authenticatable
{
use Notifiable, HasApiTokens;
/**
* The attributes that are mass assignable.
*
* @var array
*/
... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/ProductoVendido.php | app/ProductoVendido.php | <?php
/*
____ _____ _ _ _
| _ \ | __ \ (_) | | |
| |_) |_ _ | |__) |_ _ _ __ _____| |__ _ _| |_ ___
| _ <| | | | | ___/ _` | '__|_ / | '_ \| | | | __/ _ \
| |_) | |_| | | | | (_| | | / /| | |_) | |_| | || __/
|____/ \__, | ... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Venta.php | app/Venta.php | <?php
/*
____ _____ _ _ _
| _ \ | __ \ (_) | | |
| |_) |_ _ | |__) |_ _ _ __ _____| |__ _ _| |_ ___
| _ <| | | | | ___/ _` | '__|_ / | '_ \| | | | __/ _ \
| |_) | |_| | | | | (_| | | / /| | |_) | |_| | || __/
|____/ \__, | |_| \__,_|_|... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Cliente.php | app/Cliente.php | <?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Cliente extends Model
{
protected $fillable = ["nombre", "telefono"];
}
| php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Exceptions/Handler.php | app/Exceptions/Handler.php | <?php
namespace App\Exceptions;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not reported.
*
* @var array
*/
protected $dontReport = [
//
];
/**
... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Kernel.php | app/Http/Kernel.php | <?php
namespace App\Http;
use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
/**
* The application's global HTTP middleware stack.
*
* These middleware are run during every request to your application.
*
* @var array
*/
protected $middleware =... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/VentasController.php | app/Http/Controllers/VentasController.php | <?php
/*
____ _____ _ _ _
| _ \ | __ \ (_) | | |
| |_) |_ _ | |__) |_ _ _ __ _____| |__ _ _| |_ ___
| _ <| | | | | ___/ _` | '__|_ / | '_ \| | | | __/ _ \
| |_) | |_| | | | | (_| | | / /| | |_) | |_| | || __/
|____/ \__, | |_| \__,_|_|... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/ProductosController.php | app/Http/Controllers/ProductosController.php | <?php
/*
____ _____ _ _ _
| _ \ | __ \ (_) | | |
| |_) |_ _ | |__) |_ _ _ __ _____| |__ _ _| |_ ___
| _ <| | | | | ___/ _` | '__|_ / | '_ \| | | | __/ _ \
| |_) | |_| | | | | (_| | | / /| | |_) | |_| | || __/
|____/ \__, | ... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/Controller.php | app/Http/Controllers/Controller.php | <?php
namespace App\Http\Controllers;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Routing\Controller as BaseController;
class Controller extends BaseController
{
use AuthorizesReques... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/UserController.php | app/Http/Controllers/UserController.php | <?php
namespace App\Http\Controllers;
use App\User;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Hash;
class UserController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return vi... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/AuthController.php | app/Http/Controllers/AuthController.php | <?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Auth;
class AuthController extends Controller
{
public function signup(Request $request)
{
$request->validate([
'name' => 'required|string',
'email'... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/HomeController.php | app/Http/Controllers/HomeController.php | <?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class HomeController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('auth');
}
/**
* Show the application dashbo... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/VenderController.php | app/Http/Controllers/VenderController.php | <?php
/*
____ _____ _ _ _
| _ \ | __ \ (_) | | |
| |_) |_ _ | |__) |_ _ _ __ _____| |__ _ _| |_ ___
| _ <| | | | | ___/ _` | '__|_ / | '_ \| | | | __/ _ \
| |_) | |_| | | | | (_| | | / /| | |_) | |_| | || __/
|____/ \__, | |_| \__,_|_|... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/ClientesController.php | app/Http/Controllers/ClientesController.php | <?php
namespace App\Http\Controllers;
use App\Cliente;
use Illuminate\Http\Request;
class ClientesController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view("clientes.clientes_index", ... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/Auth/ConfirmPasswordController.php | app/Http/Controllers/Auth/ConfirmPasswordController.php | <?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use Illuminate\Foundation\Auth\ConfirmsPasswords;
class ConfirmPasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| C... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/Auth/LoginController.php | app/Http/Controllers/Auth/LoginController.php | <?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use Illuminate\Foundation\Auth\AuthenticatesUsers;
class LoginController extends Controller
{
/*
|--------------------------------------------------------------------------
| Login Cont... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/Auth/VerificationController.php | app/Http/Controllers/Auth/VerificationController.php | <?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use Illuminate\Foundation\Auth\VerifiesEmails;
class VerificationController extends Controller
{
/*
|--------------------------------------------------------------------------
| Email V... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/Auth/ForgotPasswordController.php | app/Http/Controllers/Auth/ForgotPasswordController.php | <?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
class ForgotPasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|----... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/Auth/ResetPasswordController.php | app/Http/Controllers/Auth/ResetPasswordController.php | <?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use Illuminate\Foundation\Auth\ResetsPasswords;
class ResetPasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Passw... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Controllers/Auth/RegisterController.php | app/Http/Controllers/Auth/RegisterController.php | <?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use App\Providers\RouteServiceProvider;
use App\User;
use Illuminate\Foundation\Auth\RegistersUsers;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Validator;
class RegisterController extends Controller
{
/*
... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Middleware/Authenticate.php | app/Http/Middleware/Authenticate.php | <?php
namespace App\Http\Middleware;
use Illuminate\Auth\Middleware\Authenticate as Middleware;
class Authenticate extends Middleware
{
/**
* Get the path the user should be redirected to when they are not authenticated.
*
* @param \Illuminate\Http\Request $request
* @return string|null
... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Middleware/RedirectIfAuthenticated.php | app/Http/Middleware/RedirectIfAuthenticated.php | <?php
namespace App\Http\Middleware;
use App\Providers\RouteServiceProvider;
use Closure;
use Illuminate\Support\Facades\Auth;
class RedirectIfAuthenticated
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param string|null ... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Middleware/TrustProxies.php | app/Http/Middleware/TrustProxies.php | <?php
namespace App\Http\Middleware;
use Fideloper\Proxy\TrustProxies as Middleware;
use Illuminate\Http\Request;
class TrustProxies extends Middleware
{
/**
* The trusted proxies for this application.
*
* @var array|string
*/
protected $proxies;
/**
* The headers that should be... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Middleware/TrimStrings.php | app/Http/Middleware/TrimStrings.php | <?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
class TrimStrings extends Middleware
{
/**
* The names of the attributes that should not be trimmed.
*
* @var array
*/
protected $except = [
'password',
'password_conf... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Middleware/CheckForMaintenanceMode.php | app/Http/Middleware/CheckForMaintenanceMode.php | <?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode as Middleware;
class CheckForMaintenanceMode extends Middleware
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array
*/
protected $except = [
... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Middleware/EncryptCookies.php | app/Http/Middleware/EncryptCookies.php | <?php
namespace App\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
class EncryptCookies extends Middleware
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array
*/
protected $except = [
//
];
}
| php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Http/Middleware/VerifyCsrfToken.php | app/Http/Middleware/VerifyCsrfToken.php | <?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
class VerifyCsrfToken extends Middleware
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
//
];
}
| php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Console/Kernel.php | app/Console/Kernel.php | <?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
* @var array
*/
protected $commands = [
//
];
... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Providers/BroadcastServiceProvider.php | app/Providers/BroadcastServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Support\Facades\Broadcast;
use Illuminate\Support\ServiceProvider;
class BroadcastServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Broadcast::routes();... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Providers/RouteServiceProvider.php | app/Providers/RouteServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Route;
class RouteServiceProvider extends ServiceProvider
{
/**
* This namespace is applied to your controller routes.
*
* In addition, it is set as th... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Providers/EventServiceProvider.php | app/Providers/EventServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Event;
class EventServiceProvider extends ServiceProvider
{
/*... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Providers/AppServiceProvider.php | app/Providers/AppServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/app/Providers/AuthServiceProvider.php | app/Providers/AuthServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
use Laravel\Passport\Passport;
class AuthServiceProvider extends ServiceProvider
{
/**
* The policy mappings for the application.
*
* @var array
*/
protected $policies = [
... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/bootstrap/app.php | bootstrap/app.php | <?php
/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of La... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/tests/TestCase.php | tests/TestCase.php | <?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication;
}
| php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/tests/CreatesApplication.php | tests/CreatesApplication.php | <?php
namespace Tests;
use Illuminate\Contracts\Console\Kernel;
trait CreatesApplication
{
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/tests/Feature/ExampleTest.php | tests/Feature/ExampleTest.php | <?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/');
$response->assertS... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/tests/Unit/ExampleTest.php | tests/Unit/ExampleTest.php | <?php
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$this->assertTrue(true);
}
}
| php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/routes/web.php | routes/web.php | <?php
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Route;
Route::get('/', function () {
return redirect()->route("home");
});
Route::get("/acerca-de", function () {
return view("misc.acerca_de");
})->name("acerca_de.index");
Route::get("/soporte", function(){
return redirect("https... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/routes/channels.php | routes/channels.php | <?php
use Illuminate\Support\Facades\Broadcast;
/*
|--------------------------------------------------------------------------
| Broadcast Channels
|--------------------------------------------------------------------------
|
| Here you may register all of the event broadcasting channels that your
| application suppo... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/routes/api.php | routes/api.php | <?php
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Route;
use App\Producto;
use App\Cliente;
use App\Venta;
/*
|--------------------------------------------------------------------------
| API Routes
|-----------------------------------------------------------------... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/routes/console.php | routes/console.php | <?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
/*
|--------------------------------------------------------------------------
| Console Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of your Closure based... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/public/index.php | public/index.php | <?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylor@laravel.com>
*/
define('LARAVEL_START', microtime(true));
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|------------------------------------... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/app.php | config/app.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Application Name
|--------------------------------------------------------------------------
|
| This value is the name of your application. This value is used when the
| framework needs to plac... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/logging.php | config/logging.php | <?php
use Monolog\Handler\NullHandler;
use Monolog\Handler\StreamHandler;
use Monolog\Handler\SyslogUdpHandler;
return [
/*
|--------------------------------------------------------------------------
| Default Log Channel
|--------------------------------------------------------------------------
... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/session.php | config/session.php | <?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Session Driver
|--------------------------------------------------------------------------
|
| This option controls the default session "driver" that will be use... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/queue.php | config/queue.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Queue Connection Name
|--------------------------------------------------------------------------
|
| Laravel's queue API supports an assortment of back-ends via a single
| API, giving y... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/cache.php | config/cache.php | <?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache connection that gets used whil... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/hashing.php | config/hashing.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Hash Driver
|--------------------------------------------------------------------------
|
| This option controls the default hash driver that will be used to hash
| passwords for your ap... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/view.php | config/view.php | <?php
return [
/*
|--------------------------------------------------------------------------
| View Storage Paths
|--------------------------------------------------------------------------
|
| Most templating systems load templates from disk. Here you may specify
| an array of paths that... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/database.php | config/database.php | <?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Database Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the database connections b... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/services.php | config/services.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Mailgun, Postmark... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/filesystems.php | config/filesystems.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Filesystem Disk
|--------------------------------------------------------------------------
|
| Here you may specify the default filesystem disk that should be used
| by the framework. T... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/mail.php | config/mail.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Mailer
|--------------------------------------------------------------------------
|
| This option controls the default mailer that is used to send any email
| messages sent by your appl... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/cors.php | config/cors.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Cross-Origin Resource Sharing (CORS) Configuration
|--------------------------------------------------------------------------
|
| Here you may configure your settings for cross-origin resource shar... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/broadcasting.php | config/broadcasting.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Broadcaster
|--------------------------------------------------------------------------
|
| This option controls the default broadcaster that will be used by the
| framework when an even... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/config/auth.php | config/auth.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Defaults
|--------------------------------------------------------------------------
|
| This option controls the default authentication "guard" and password
| reset options for y... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/database/seeds/DatabaseSeeder.php | database/seeds/DatabaseSeeder.php | <?php
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
// $this->call(UsersTableSeeder::class);
}
}
| php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/database/factories/UserFactory.php | database/factories/UserFactory.php | <?php
/** @var \Illuminate\Database\Eloquent\Factory $factory */
use App\User;
use Faker\Generator as Faker;
use Illuminate\Support\Str;
/*
|--------------------------------------------------------------------------
| Model Factories
|--------------------------------------------------------------------------
|
| Thi... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/database/migrations/2020_03_05_003009_create_ventas_table.php | database/migrations/2020_03_05_003009_create_ventas_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateVentasTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('ventas', functio... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/database/migrations/2020_03_05_003110_create_producto_vendidos_table.php | database/migrations/2020_03_05_003110_create_producto_vendidos_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateProductoVendidosTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('produc... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/database/migrations/2020_03_10_014423_create_clientes_table.php | database/migrations/2020_03_10_014423_create_clientes_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateClientesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('clientes', fun... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/database/migrations/2014_10_12_000000_create_users_table.php | database/migrations/2014_10_12_000000_create_users_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function ... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/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... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/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'... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/database/migrations/2020_03_10_023628_agregar_id_cliente_ventas.php | database/migrations/2020_03_10_023628_agregar_id_cliente_ventas.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AgregarIdClienteVentas extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('ventas', fun... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/database/migrations/2020_03_04_190205_create_productos_table.php | database/migrations/2020_03_04_190205_create_productos_table.php | <?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateProductosTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('productos', f... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/resources/lang/en/passwords.php | resources/lang/en/passwords.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Password Reset Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are gi... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/resources/lang/en/pagination.php | resources/lang/en/pagination.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pag... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/resources/lang/en/validation.php | resources/lang/en/validation.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator ... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/resources/lang/en/auth.php | resources/lang/en/auth.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages t... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/resources/lang/es/validation.php | resources/lang/es/validation.php | <?php
return [
//TODO: terminar validaciones
// Tomado de: https://parzibyte.me/blog/2019/06/20/laravel-mensajes-validacion-espanol/
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|-------------------------------------------------------... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
parzibyte/sistema_ventas_laravel | https://github.com/parzibyte/sistema_ventas_laravel/blob/a193b0bd30a15df8a95b23fb9ec570f947758942/resources/views/maestra.blade.php | resources/views/maestra.blade.php | {{--
____ _____ _ _ _
| _ \ | __ \ (_) | | |
| |_) |_ _ | |__) |_ _ _ __ _____| |__ _ _| |_ ___
| _ <| | | | | ___/ _` | '__|_ / | '_ \| | | | __/ _ \
| |_) | |_| | | | | (_| | | / /| | |_) | |_| | || __/
|____/ \__, | |_| \__,_|_| /_... | php | MIT | a193b0bd30a15df8a95b23fb9ec570f947758942 | 2026-01-05T05:01:29.026818Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.