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 |
|---|---|---|---|---|---|---|---|---|
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/ReceivingTempApiController.php | app/Http/Controllers/ReceivingTempApiController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\ReceivingTemp;
use App\Item, App\ItemKitItem;
use DB, \Auth, \Redirect, \Validator, \Input, \Session, \Response;
use Illuminate\Http\Request;
class ReceivingTempApiController extends Controller {
public functio... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/ReceivingController.php | app/Http/Controllers/ReceivingController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Receiving;
use App\ReceivingTemp;
use App\ReceivingItem;
use App\Inventory;
use App\Supplier;
use App\Item;
use App\Http\Requests\ReceivingRequest;
use \Auth, \Redirect, \Validator, \Input, \Session;
use Illuminat... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/SaleController.php | app/Http/Controllers/SaleController.php | <?php namespace App\Http\Controllers;
use App\Http\Requests;
use App\Http\Controllers\Controller;
use App\Sale;
use App\SaleTemp;
use App\SaleItem;
use App\Inventory;
use App\Customer;
use App\Item, App\ItemKitItem;
use App\Http\Requests\SaleRequest;
use \Auth, \Redirect, \Validator, \Input, \Session;
use Illuminate\H... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/Auth/AuthController.php | app/Http/Controllers/Auth/AuthController.php | <?php
namespace App\Http\Controllers\Auth;
use App\User;
use Validator;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
class AuthController extends Controller
{
/*
|--------------------------------------------------------------------------
| Registrati... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Controllers/Auth/PasswordController.php | app/Http/Controllers/Auth/PasswordController.php | <?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\ResetsPasswords;
class PasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
|-------------------... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Middleware/RoleMiddleware.php | app/Http/Middleware/RoleMiddleware.php | <?php
namespace App\Http\Middleware;
use Closure;
use Auth;
class RoleMiddleware
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if (Auth:... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Middleware/LanguangeMiddleware.php | app/Http/Middleware/LanguangeMiddleware.php | <?php
namespace App\Http\Middleware;
use Closure;
use App, DB;
class LanguangeMiddleware
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Middleware/Authenticate.php | app/Http/Middleware/Authenticate.php | <?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Contracts\Auth\Guard;
class Authenticate
{
/**
* The Guard implementation.
*
* @var Guard
*/
protected $auth;
/**
* Create a new filter instance.
*
* @param Guard $auth
* @return void
*/
p... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Middleware/RedirectIfAuthenticated.php | app/Http/Middleware/RedirectIfAuthenticated.php | <?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Contracts\Auth\Guard;
class RedirectIfAuthenticated
{
/**
* The Guard implementation.
*
* @var Guard
*/
protected $auth;
/**
* Create a new filter instance.
*
* @param Guard $auth
* @return void
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Middleware/EncryptCookies.php | app/Http/Middleware/EncryptCookies.php | <?php
namespace App\Http\Middleware;
use Illuminate\Cookie\Middleware\EncryptCookies as BaseEncrypter;
class EncryptCookies extends BaseEncrypter
{
/**
* The names of the cookies that should not be encrypted.
*
* @var array
*/
protected $except = [
//
];
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Http/Middleware/VerifyCsrfToken.php | app/Http/Middleware/VerifyCsrfToken.php | <?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
class VerifyCsrfToken extends BaseVerifier
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
//
];
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/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 = [
\App\Console\... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Console/Commands/Inspire.php | app/Console/Commands/Inspire.php | <?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Foundation\Inspiring;
class Inspire extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'inspire';
/**
* The console command descript... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Providers/ConfigServiceProvider.php | app/Providers/ConfigServiceProvider.php | <?php namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class ConfigServiceProvider extends ServiceProvider {
/**
* Overwrite any vendor / package configuration.
*
* This service provider is intended to provide a convenient location for you
* to overwrite any "vendor" or package configuration... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Providers/RouteServiceProvider.php | app/Providers/RouteServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Routing\Router;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
class RouteServiceProvider extends ServiceProvider
{
/**
* This namespace is applied to the controller routes in your routes file.
*
* In addition, it ... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Providers/EventServiceProvider.php | app/Providers/EventServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Contracts\Events\Dispatcher as DispatcherContract;
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
class EventServiceProvider extends ServiceProvider
{
/**
* The event listener mappings for the application.
*
* @var... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Providers/BusServiceProvider.php | app/Providers/BusServiceProvider.php | <?php namespace App\Providers;
use Illuminate\Bus\Dispatcher;
use Illuminate\Support\ServiceProvider;
class BusServiceProvider extends ServiceProvider {
/**
* Bootstrap any application services.
*
* @param \Illuminate\Bus\Dispatcher $dispatcher
* @return void
*/
public function boot(Dispatcher $dispatc... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Providers/AppServiceProvider.php | app/Providers/AppServiceProvider.php | <?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register any application services.
*
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/app/Events/Event.php | app/Events/Event.php | <?php
namespace App\Events;
abstract class Event
{
//
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/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 | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/bootstrap/autoload.php | bootstrap/autoload.php | <?php
define('LARAVEL_START', microtime(true));
/*
|--------------------------------------------------------------------------
| Register The Composer Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader
| for ... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/tests/TestCase.php | tests/TestCase.php | <?php
class TestCase extends Illuminate\Foundation\Testing\TestCase {
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/tests/ExampleTest.php | tests/ExampleTest.php | <?php
class ExampleTest extends TestCase {
/**
* A basic functional test example.
*
* @return void
*/
public function testBasicExample()
{
$response = $this->call('GET', '/');
$this->assertEquals(200, $response->getStatusCode());
}
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/public/index.php | public/index.php | <?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylorotwell@gmail.com>
*/
/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/config/app.php | config/app.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Application Debug Mode
|--------------------------------------------------------------------------
|
| When your application is in debug mode, detailed error messages with
| stack traces will be shown on every error... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/config/session.php | config/session.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Session Driver
|--------------------------------------------------------------------------
|
| This option controls the default session "driver" that will be used on
| requests. By default, we will use the l... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/config/queue.php | config/queue.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Queue Driver
|--------------------------------------------------------------------------
|
| The Laravel queue API supports a variety of back-ends via an unified
| API, giving you convenient access to each b... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/config/cache.php | config/cache.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache connection that gets used while
| using this caching library. This connectio... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/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 should be checked fo... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/config/database.php | config/database.php | <?php
return [
/*
|--------------------------------------------------------------------------
| PDO Fetch Style
|--------------------------------------------------------------------------
|
| By default, database results will be returned as instances of the PHP
| stdClass object; however, you may desire to ret... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/config/services.php | config/services.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Stripe, Mailgun, Mandrill, and others.... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/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. A "local" driver, as w... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/config/mail.php | config/mail.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Mail Driver
|--------------------------------------------------------------------------
|
| Laravel supports both SMTP and PHP's "mail" function as drivers for the
| sending of e-mail. You may specify which one you'... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/config/compile.php | config/compile.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Additional Compiled Classes
|--------------------------------------------------------------------------
|
| Here you may specify additional classes to include in the compiled file
| generated by the `artisan optimiz... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/config/auth.php | config/auth.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Default Authentication Driver
|--------------------------------------------------------------------------
|
| This option controls the authentication driver that will be utilized.
| This driver manages the retrieval... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/seeds/UserTableSeeder.php | database/seeds/UserTableSeeder.php | <?php
use Illuminate\Database\Seeder;
class UserTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB::table('users')->insert([
'name' => 'admin',
'email' => 'admin@tuta.pos',
'password' => ... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/seeds/DatabaseSeeder.php | database/seeds/DatabaseSeeder.php | <?php
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
class DatabaseSeeder extends Seeder {
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Model::unguard();
$this->call('UserTableSeeder');
$this->call('TutaposSettingTableSeeder');
}
}
| php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/seeds/TutaposSettingTableSeeder.php | database/seeds/TutaposSettingTableSeeder.php | <?php
use Illuminate\Database\Seeder;
class TutaposSettingTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB::table('tutapos_settings')->insert([
'languange' => 'en',
'created_at' => time(),
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_06_16_163101_create_tutapos_settings_table.php | database/migrations/2015_06_16_163101_create_tutapos_settings_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTutaposSettingsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('tutapos_settings', function(Blueprint $table)
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_05_29_074713_create_customers_table.php | database/migrations/2015_05_29_074713_create_customers_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateCustomersTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('customers', function(Blueprint $table)
{
$table->increments('id');
$ta... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2014_10_12_000000_create_users_table.php | database/migrations/2014_10_12_000000_create_users_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function(Blueprint $table)
{
$table->increments('id');
$table->str... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/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\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePasswordResetsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('password_resets', function(Blueprint $table)
{
$table->string('email... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_06_08_050821_create_sale_items_table.php | database/migrations/2015_06_08_050821_create_sale_items_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSaleItemsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('sale_items', function(Blueprint $table)
{
$table->increments('id');
$t... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_06_12_214916_create_item_kit_item_temps_table.php | database/migrations/2015_06_12_214916_create_item_kit_item_temps_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateItemKitItemTempsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('item_kit_item_temps', function(Blueprint $tab... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_06_06_083159_create_sale_temps_table.php | database/migrations/2015_06_06_083159_create_sale_temps_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSaleTempsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('sale_temps', function(Blueprint $table)
{
$table->increments('id');
$t... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_12_18_070318_create_roles_table.php | database/migrations/2015_12_18_070318_create_roles_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateRolesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('roles', function (Blueprint $table) {
$table... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_05_30_015027_create_items_table.php | database/migrations/2015_05_30_015027_create_items_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateItemsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('items', function(Blueprint $table)
{
$table->increments('id');
$table->str... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_06_03_013557_create_receivings_table.php | database/migrations/2015_06_03_013557_create_receivings_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateReceivingsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('receivings', function(Blueprint $table)
{
$table->increments('id');
$... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_12_18_070426_create_user_roles_table.php | database/migrations/2015_12_18_070426_create_user_roles_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateUserRolesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('user_roles', function (Blueprint $table) {
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_06_02_010425_create_inventories_table.php | database/migrations/2015_06_02_010425_create_inventories_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateInventoriesTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('inventories', function(Blueprint $table)
{
$table->increments('id');
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_05_30_073533_create_suppliers_table.php | database/migrations/2015_05_30_073533_create_suppliers_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSuppliersTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('suppliers', function(Blueprint $table)
{
$table->increments('id');
$ta... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_06_06_083156_create_sales_table.php | database/migrations/2015_06_06_083156_create_sales_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateSalesTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('sales', function(Blueprint $table)
{
$table->increments('id');
$table->int... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_06_03_134547_create_receiving_temps_table.php | database/migrations/2015_06_03_134547_create_receiving_temps_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateReceivingTempsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('receiving_temps', function(Blueprint $table)
{
$table->increments('i... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_06_07_042753_create_receiving_items_table.php | database/migrations/2015_06_07_042753_create_receiving_items_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateReceivingItemsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('receiving_items', function(Blueprint $table)
{
$table->increments('i... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/database/migrations/2015_06_12_224226_create_item_kit_items_table.php | database/migrations/2015_06_12_224226_create_item_kit_items_table.php | <?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateItemKitItemsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('item_kit_items', function(Blueprint $table)
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/ms/passwords.php | resources/lang/ms/passwords.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Password Reminder Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
| that are... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/ms/pagination.php | resources/lang/ms/pagination.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pag... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/ms/validation.php | resources/lang/ms/validation.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator ... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/en/itemkit.php | resources/lang/en/itemkit.php | <?php
return [
'item_kits' => 'Item Kits',
'new_item_kit' => 'New Item Kit',
'item_kit_id' => 'Item Kit ID',
'item_kit_name' => 'Item Kit Name',
'cost_price' => 'Cost Price',
'selling_price' => 'Selling Price',
'item_kit_description' => 'Item Kit Description',
'search_item' => 'Search Item:',
'descript... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/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 | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/en/receiving.php | resources/lang/en/receiving.php | <?php
return [
'item_receiving' => 'Items Receiving',
'search_item' => 'Search Item:',
'invoice' => 'Invoice',
'employee' => 'Employee',
'payment_type' => 'Payment Type',
'supplier' => 'Supplier',
'item_id' => 'Item ID',
'item_name' => 'Item Name',
'cost' => 'Cost',
'quantity' => 'Quantity',
'total' => 'To... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/en/item.php | resources/lang/en/item.php | <?php
return [
'list_items' => 'List Items',
'new_item' => 'New Item',
'item_id' => 'Item ID',
'upc_ean_isbn' => 'UPC/EAN/ISBN',
'item_name' => 'Item Name',
'size' => 'Size',
'cost_price' => 'Cost Price',
'selling_price' => 'Selling Price',
'quantity' => 'Quantity',
'avatar' => 'Avatar',
'edit' =... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/en/menu.php | resources/lang/en/menu.php | <?php
return [
'dashboard' => 'Dashboard',
'customers' => 'Customers',
'employees' => 'Employees',
'items' => 'Items',
'item_kits' => 'Item Kits',
'suppliers' => 'Suppliers',
'receivings' => 'Receivings',
'sales' => 'Sales',
'reports' => 'Reports',
'receivings_report' => 'Rece... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/en/report-sale.php | resources/lang/en/report-sale.php | <?php
return [
'reports' => 'Reports',
'sales_report' => 'Sales Report',
'grand_total' => 'TOTAL',
'grand_profit' => 'PROFIT',
'sale_id' => 'Sale ID',
'date' => 'Date',
'items_purchased' => 'Items Purchased',
'sold_by' => 'Sold By',
'sold_to' => 'Sold To',
'total' => 'Total',
'profit' => 'Profit',
'paymen... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/en/employee.php | resources/lang/en/employee.php | <?php
return [
'list_employees' => 'List Employees',
'new_employee' => 'New Employee',
'person_id' => 'Person ID',
'name' => 'Name',
'email' => 'Email',
'password' => 'Password',
'confirm_password' => 'Confirm Password',
'submit' => 'Submit',
'edit' => 'Edit',
'delete' => 'Delete',
'update_employee' => 'Up... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/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 | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/en/dashboard.php | resources/lang/en/dashboard.php | <?php
return [
'welcome' => 'Welcome to TutaPOS - TUTA Point of Sale.',
'statistics' => 'Statistics',
'total_employees' => 'Total Employees',
'total_customers' => 'Total Customers',
'total_suppliers' => 'Total Suppliers',
'total_items' => 'Total Items',
'total_item_kits' => 'Total Item Kits',
'tota... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/en/supplier.php | resources/lang/en/supplier.php | <?php
return [
'list_suppliers' => 'List Suppliers',
'new_supplier' => 'New Supplier',
'company_name' => 'Company Name',
'name' => 'Name',
'email' => 'Email',
'phone_number' => 'Phone Number',
'avatar' => 'Avatar',
'choose_avatar' => 'Choose Avatar:',
'address' => 'Address',
'city' => 'City',
'state'... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/en/customer.php | resources/lang/en/customer.php | <?php
return [
'list_customers' => 'List Customers',
'new_customer' => 'New Customer',
'customer_id' => 'Customer ID',
'name' => 'Name',
'email' => 'Email',
'phone_number' => 'Phone Number',
'avatar' => 'Avatar',
'choose_avatar' => 'Choose Avatar',
'address' => 'Address',
'city' => 'Cit... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/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 | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/en/sale.php | resources/lang/en/sale.php | <?php
return [
'sales_register' => 'Sales Register',
'search_item' => 'Search Item:',
'invoice' => 'Invoice',
'employee' => 'Employee',
'payment_type' => 'Payment Type',
'customer' => 'Customer',
'item_id' => 'Item ID',
'item_name' => 'Item Name',
'price' => 'Price',
'quantity' => 'Quantity',
'total' => 'T... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/en/report-receiving.php | resources/lang/en/report-receiving.php | <?php
return [
'reports' => 'Reports',
'receivings_report' => 'Receivings Report',
'grand_total' => 'TOTAL',
'receiving_id' => 'Receiving ID',
'date' => 'Date',
'items_received' => 'Items Received',
'received_by' => 'Received By',
'supplied_by' => 'Supplied By',
'total' => 'Total',
'payment_type' => 'Paymen... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/id/itemkit.php | resources/lang/id/itemkit.php | <?php
return [
'item_kits' => 'Barang Paketan',
'new_item_kit' => 'Paketan Baru',
'item_kit_id' => 'Paket ID',
'item_kit_name' => 'Nama Paket',
'cost_price' => 'Harga Beli',
'selling_price' => 'Harga Jual',
'item_kit_description' => 'Keterangan',
'search_item' => 'Cari Barang:',
'description' => 'Keter... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/id/receiving.php | resources/lang/id/receiving.php | <?php
return [
'item_receiving' => 'Penerimaan Barang',
'search_item' => 'Cari Barang:',
'invoice' => 'Faktur',
'employee' => 'Pegawai',
'payment_type' => 'Jenis Pembayaran',
'supplier' => 'Pemasok',
'item_id' => 'ID Barang',
'item_name' => 'Nama Barang',
'cost' => 'Harga Beli',
'quantity' => 'Quantity',
'... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/id/item.php | resources/lang/id/item.php | <?php
return [
'list_items' => 'Daftar Barang',
'new_item' => 'Barang Baru',
'item_id' => 'ID Barang',
'upc_ean_isbn' => 'UPC/EAN/ISBN',
'item_name' => 'Nama Barang',
'size' => 'Ukuran',
'cost_price' => 'Harga Beli',
'selling_price' => 'Harga Jual',
'quantity' => 'Quantity',
'avatar' => 'Gambar',
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/id/menu.php | resources/lang/id/menu.php | <?php
return [
'dashboard' => 'Dashboard',
'customers' => 'Pelanggan',
'employees' => 'Pegawai',
'items' => 'Barang',
'item_kits' => 'Barang Paket',
'suppliers' => 'Pemasok',
'receivings' => 'Penerimaan',
'sales' => 'Penjualan',
'reports' => 'Laporan',
'receivings_report' => '... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/id/report-sale.php | resources/lang/id/report-sale.php | <?php
return [
'reports' => 'Laporan',
'sales_report' => 'Laporan Penjualan',
'grand_total' => 'TOTAL',
'grand_profit' => 'KEUNTUNGAN',
'sale_id' => 'ID Penjualan',
'date' => 'Tanggal',
'items_purchased' => 'Barang yang dibeli',
'sold_by' => 'Dijual Oleh',
'sold_to' => 'Dijual Kepada',
'total' => 'Total',
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/id/employee.php | resources/lang/id/employee.php | <?php
return [
'list_employees' => 'Daftar Pegawai',
'new_employee' => 'Pegawai Baru',
'person_id' => 'ID Pegawai',
'name' => 'Nama',
'email' => 'Email',
'password' => 'Password',
'confirm_password' => 'Ulangi Password',
'submit' => 'Submit',
'edit' => 'Ganti',
'delete' => 'Hapus',
'update_employee' => 'Ga... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/id/dashboard.php | resources/lang/id/dashboard.php | <?php
return [
'welcome' => 'Selamat Datang di TutaPOS - TUTA Point of Sale.',
'statistics' => 'Statistik',
'total_employees' => 'Total Pegawai',
'total_customers' => 'Total Pelanggan',
'total_suppliers' => 'Total Supplier',
'total_items' => 'Total Barang',
'total_item_kits' => 'Total Barang Paket',
'... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/id/supplier.php | resources/lang/id/supplier.php | <?php
return [
'list_suppliers' => 'Daftar Pemasok',
'new_supplier' => 'Pemasok Baru',
'company_name' => 'Nama Perusahaan',
'name' => 'Nama',
'email' => 'Email',
'phone_number' => 'Nomor Telepon',
'avatar' => 'Foto',
'choose_avatar' => 'Pilih Foto:',
'address' => 'Alamat',
'city' => 'Kota',
'state' =... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/id/customer.php | resources/lang/id/customer.php | <?php
return [
'list_customers' => 'Daftar Pelanggan',
'new_customer' => 'Pelanggan Baru',
'customer_id' => 'ID Pelanggan',
'name' => 'Nama',
'email' => 'Email',
'phone_number' => 'Nomor Telepon',
'avatar' => 'Foto',
'choose_avatar' => 'Pilih Foto',
'address' => 'Alamat',
'city' => 'Kot... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/id/sale.php | resources/lang/id/sale.php | <?php
return [
'sales_register' => 'Daftar Penjualan',
'search_item' => 'Cari Barang:',
'invoice' => 'Faktur',
'employee' => 'Pegawai',
'payment_type' => 'Jenis Pembayaran',
'customer' => 'Pelanggan',
'item_id' => 'ID Barang',
'item_name' => 'Nama Barang',
'price' => 'Harga',
'quantity' => 'Quantity',
'tot... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/id/report-receiving.php | resources/lang/id/report-receiving.php | <?php
return [
'reports' => 'Laporan',
'receivings_report' => 'Laporan Penerimaan',
'grand_total' => 'TOTAL',
'receiving_id' => 'ID Penerimaan',
'date' => 'Tanggal',
'items_received' => 'Barang Diterima',
'received_by' => 'Diterima Oleh',
'supplied_by' => 'Dipasok Oleh',
'total' => 'Total',
'payment_type' =... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/itemkit.php | resources/lang/es/itemkit.php | <?php
return [
'item_kits' => 'Combos de Productos',
'new_item_kit' => 'Nuevo Combo',
'item_kit_id' => 'ID',
'item_kit_name' => 'Nombre del Combo',
'cost_price' => 'Costo',
'selling_price' => 'Precio',
'item_kit_description' => 'Descripción',
'search_item' => 'Buscar Producto:',
'd... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/passwords.php | resources/lang/es/passwords.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Password Reminder Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are the default lines which match reasons
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/receiving.php | resources/lang/es/receiving.php | <?php
return [
'item_receiving' => 'Compra de Productos',
'search_item' => 'Buscar Producto:',
'invoice' => 'Recibo',
'employee' => 'Empleado',
'payment_type' => 'Tipo de Pago',
'supplier' => 'Proveedor',
'item_id' => 'ID',
'item_name' => 'Producto',
'cost' => 'Costo',
'quantit... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/item.php | resources/lang/es/item.php | <?php
return [
'list_items' => 'Listado de Productos',
'new_item' => 'Nuevo Producto',
'item_id' => 'ID',
'upc_ean_isbn' => 'UPC/EAN/ISBN',
'item_name' => 'Nombre del Producto',
'size' => 'Tamaño',
'cost_price' => 'Costo',
'selling_price' => 'Precio',
'quantity' => 'Cantidad',
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/menu.php | resources/lang/es/menu.php | <?php
return [
'dashboard' => 'Tablero',
'customers' => 'Clientes',
'employees' => 'Empleados',
'items' => 'Productos',
'item_kits' => 'Combos',
'suppliers' => 'Proveedores',
'receivings' => 'Compras',
'sales' => 'Ventas',
'reports' => 'Reportes',
'receivings_report' => 'Report... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/report-sale.php | resources/lang/es/report-sale.php | <?php
return [
'reports' => 'Reportes',
'sales_report' => 'Reporte de Ventas',
'grand_total' => 'TOTAL',
'grand_profit' => 'GANANCIA',
'sale_id' => 'ID',
'date' => 'Fecha',
'items_purchased' => 'Items Vendidos',
'sold_by' => 'Vendido por',
'sold_to' => 'Cliente',
'total' => 'To... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/employee.php | resources/lang/es/employee.php | <?php
return [
'list_employees' => 'Listado de Empleados',
'new_employee' => 'Nuevo Empleado',
'person_id' => 'ID',
'name' => 'Nombre',
'email' => 'Email',
'password' => 'Contraseña',
'confirm_password' => 'Confirmar Contraseña',
'submit' => 'Guardar',
'edit' => 'Editar',
'dele... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/pagination.php | resources/lang/es/pagination.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Pagination Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used by the paginator library to build
| the simple pagination links. You ar... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/dashboard.php | resources/lang/es/dashboard.php | <?php
return [
'welcome' => 'Bienvenido a TutaPOS - TUTA Punto de Venta.',
'statistics' => 'Estadísticas',
'total_employees' => 'Total Empleados',
'total_customers' => 'Total Clientes',
'total_suppliers' => 'Total Proveedores',
'total_items' => 'Total Productos',
'total_item_kits' => 'Tota... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/supplier.php | resources/lang/es/supplier.php | <?php
return [
'list_suppliers' => 'Listado de Proveedores',
'new_supplier' => 'Nuevo Proveedor',
'company_name' => 'Empresa',
'name' => 'Nombre',
'email' => 'Email',
'phone_number' => 'Teléfono',
'avatar' => 'Imagen',
'choose_avatar' => 'Seleccione una imagen:',
'address' => 'Dire... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/customer.php | resources/lang/es/customer.php | <?php
return [
'list_customers' => 'Listado de Clientes',
'new_customer' => 'Nuevo Cliente',
'customer_id' => 'ID',
'name' => 'Nombre',
'email' => 'Email',
'phone_number' => 'Teléfono',
'avatar' => 'Imagen',
'choose_avatar' => 'Seleccione una imagen',
'address' => 'Dirección',
... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/validation.php | resources/lang/es/validation.php | <?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| th... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/sale.php | resources/lang/es/sale.php | <?php
return [
'sales_register' => 'Registro de Ventas',
'search_item' => 'Buscar Producto:',
'invoice' => 'Recibo',
'employee' => 'Empleado',
'payment_type' => 'Tipo de Pago',
'customer' => 'Cliente',
'item_id' => 'ID',
'item_name' => 'Producto',
'price' => 'Precio',
'quantity... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/lang/es/report-receiving.php | resources/lang/es/report-receiving.php | <?php
return [
'reports' => 'Reportes',
'receivings_report' => 'Reporte de Compras',
'grand_total' => 'TOTAL',
'receiving_id' => 'ID',
'date' => 'Fecha',
'items_received' => 'Items Comprados',
'received_by' => 'Recibido por',
'supplied_by' => 'Proveedor',
'total' => 'Total',
'p... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/views/welcome.blade.php | resources/views/welcome.blade.php | <html>
<head>
<title>Laravel</title>
<link href='//fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
<style>
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
color: #B0BEC5;
display: table;
font-weight: 100;
font-family: 'Lato';
}
.c... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/views/home.blade.php | resources/views/home.blade.php | @extends('app')
@section('content')
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="panel panel-default">
<div class="panel-heading">Dashboard</div>
<div class="panel-body">
{{ trans('dashboard.welcome') }}
<hr />
<div class="panel panel-defau... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
tutacare/tutapos | https://github.com/tutacare/tutapos/blob/2e07e73ad355162caacf2e5509125894001b84a5/resources/views/app.blade.php | resources/views/app.blade.php | <!DOCTYPE html>
<html ng-app="tutapos">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TutaPOS</title>
<link href="{{ asset('/css/app.css') }}" rel="stylesheet">
<link href="{{ asset('/css/footer.css'... | php | MIT | 2e07e73ad355162caacf2e5509125894001b84a5 | 2026-01-05T05:00:20.248800Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.