update code 30/3
parents
Showing
.editorconfig
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.styleci.yml
0 → 100644
README.md
0 → 100644
app/Category.php
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Department.php
0 → 100644
app/Device.php
0 → 100644
app/Employee.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Handover.php
0 → 100644
app/Http/Controllers/CategoryController.php
0 → 100644
app/Http/Controllers/Controller.php
0 → 100644
app/Http/Controllers/DeviceController.php
0 → 100644
app/Http/Controllers/EmployeeController.php
0 → 100644
app/Http/Controllers/HandoverController.php
0 → 100644
app/Http/Controllers/MenuController.php
0 → 100644
app/Http/Controllers/ProductController.php
0 → 100644
app/Http/Controllers/SupplyController.php
0 → 100644
app/Http/Controllers/UserController.php
0 → 100644
app/Http/Kernel.php
0 → 100644
app/Http/Middleware/Authenticate.php
0 → 100644
app/Http/Middleware/EncryptCookies.php
0 → 100644
app/Http/Middleware/TrimStrings.php
0 → 100644
app/Http/Middleware/TrustHosts.php
0 → 100644
app/Http/Middleware/TrustProxies.php
0 → 100644
app/Http/Middleware/VerifyCsrfToken.php
0 → 100644
app/Menu.php
0 → 100644
app/Product.php
0 → 100644
app/Providers/AppServiceProvider.php
0 → 100644
app/Providers/AuthServiceProvider.php
0 → 100644
app/Providers/BroadcastServiceProvider.php
0 → 100644
app/Providers/EventServiceProvider.php
0 → 100644
app/Providers/RouteServiceProvider.php
0 → 100644
app/Supply.php
0 → 100644
app/User.php
0 → 100644
artisan
0 → 100644
bootstrap/app.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "laravel/laravel", | |||
"type": "project", | |||
"description": "The Laravel Framework.", | |||
"keywords": [ | |||
"framework", | |||
"laravel" | |||
], | |||
"license": "MIT", | |||
"require": { | |||
"php": "^7.2.5|^8.0", | |||
"fideloper/proxy": "^4.4", | |||
"fruitcake/laravel-cors": "^2.0", | |||
"guzzlehttp/guzzle": "^6.3.1|^7.0.1", | |||
"laravel/framework": "^7.29", | |||
"laravel/tinker": "^2.5" | |||
}, | |||
"require-dev": { | |||
"facade/ignition": "^2.0", | |||
"fakerphp/faker": "^1.9.1", | |||
"mockery/mockery": "^1.3.1", | |||
"nunomaduro/collision": "^4.3", | |||
"phpunit/phpunit": "^8.5.8|^9.3.3" | |||
}, | |||
"config": { | |||
"optimize-autoloader": true, | |||
"preferred-install": "dist", | |||
"sort-packages": true | |||
}, | |||
"extra": { | |||
"laravel": { | |||
"dont-discover": [] | |||
} | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"App\\": "app/" | |||
}, | |||
"classmap": [ | |||
"database/seeds", | |||
"database/factories" | |||
] | |||
}, | |||
"autoload-dev": { | |||
"psr-4": { | |||
"Tests\\": "tests/" | |||
} | |||
}, | |||
"minimum-stability": "dev", | |||
"prefer-stable": true, | |||
"scripts": { | |||
"post-autoload-dump": [ | |||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | |||
"@php artisan package:discover --ansi" | |||
], | |||
"post-root-package-install": [ | |||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | |||
], | |||
"post-create-project-cmd": [ | |||
"@php artisan key:generate --ansi" | |||
] | |||
} | |||
} |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
config/app.php
0 → 100644
config/auth.php
0 → 100644
config/broadcasting.php
0 → 100644
config/cache.php
0 → 100644
config/cors.php
0 → 100644
config/database.php
0 → 100644
config/filesystems.php
0 → 100644
config/hashing.php
0 → 100644
config/logging.php
0 → 100644
config/mail.php
0 → 100644
config/queue.php
0 → 100644
config/services.php
0 → 100644
config/session.php
0 → 100644
config/view.php
0 → 100644
database/.gitignore
0 → 100644
database/factories/UserFactory.php
0 → 100644
database/seeds/DatabaseSeeder.php
0 → 100644
demo.css
0 → 100644
demo1.html
0 → 100644
laravel-7.x/.editorconfig
0 → 100644
laravel-7.x/.gitattributes
0 → 100644
laravel-7.x/.gitignore
0 → 100644
laravel-7.x/.styleci.yml
0 → 100644
laravel-7.x/README.md
0 → 100644
laravel-7.x/app/Console/Kernel.php
0 → 100644
laravel-7.x/app/Exceptions/Handler.php
0 → 100644
laravel-7.x/app/Http/Kernel.php
0 → 100644
laravel-7.x/app/User.php
0 → 100644
laravel-7.x/artisan
0 → 100644
laravel-7.x/bootstrap/app.php
0 → 100644
laravel-7.x/bootstrap/cache/.gitignore
0 → 100644
laravel-7.x/composer.json
0 → 100644
laravel-7.x/config/app.php
0 → 100644
laravel-7.x/config/auth.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/broadcasting.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/cache.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/cors.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/database.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/filesystems.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/hashing.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/logging.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/mail.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/queue.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/services.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/session.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/config/view.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/database/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
laravel-7.x/package.json
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/phpunit.xml
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/public/.htaccess
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/public/favicon.ico
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/public/index.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/public/robots.txt
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/public/web.config
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/resources/js/app.js
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/resources/js/bootstrap.js
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/resources/lang/en/auth.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/resources/lang/en/pagination.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/resources/lang/en/passwords.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/resources/lang/en/validation.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/resources/sass/app.scss
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
laravel-7.x/routes/api.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/routes/channels.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/routes/console.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/routes/web.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/server.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/storage/app/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/storage/app/public/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/storage/framework/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
laravel-7.x/storage/logs/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/tests/CreatesApplication.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/tests/Feature/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/tests/TestCase.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/tests/Unit/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
laravel-7.x/webpack.mix.js
0 → 100644
This diff is collapsed.
Click to expand it.
package.json
0 → 100644
This diff is collapsed.
Click to expand it.
phpunit.xml
0 → 100644
This diff is collapsed.
Click to expand it.
public/.htaccess
0 → 100644
This diff is collapsed.
Click to expand it.
public/favicon.ico
0 → 100644
This diff is collapsed.
Click to expand it.
public/index.php
0 → 100644
This diff is collapsed.
Click to expand it.
public/robots.txt
0 → 100644
This diff is collapsed.
Click to expand it.
public/web.config
0 → 100644
This diff is collapsed.
Click to expand it.
resources/devices/create.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/js/app.js
0 → 100644
This diff is collapsed.
Click to expand it.
resources/js/bootstrap.js
0 → 100644
This diff is collapsed.
Click to expand it.
resources/lang/en/auth.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/lang/en/pagination.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/lang/en/passwords.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/lang/en/validation.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/layout/master_layout.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/sass/app.scss
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/addDevice/add.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/handovers/handover.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/handovers/list.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
resources/views/product/category.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/product/create.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/product/department.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/product/device.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/product/edit.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/product/employee.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/product/list.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/product/remove.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/product/supply.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/welcome.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/api.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/channels.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/console.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/web.php
0 → 100644
This diff is collapsed.
Click to expand it.
server.php
0 → 100644
This diff is collapsed.
Click to expand it.
storage/app/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/app/public/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/cache/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/cache/data/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/sessions/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/testing/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/views/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/logs/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
tests/CreatesApplication.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/TestCase.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Unit/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
webpack.mix.js
0 → 100644
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment