Compare commits

..

1 Commits

Author SHA1 Message Date
edmondlang 834ea52a4f debug testing 2023-01-18 00:47:41 +08:00
6 changed files with 4 additions and 27 deletions
@@ -1,6 +1,6 @@
<?php
namespace App\Http\Controllers\PackingLists\Containers;
namespace App\Http\Controllers\PackingLists\Packages;
use App\Classes\Modules\PackingLists\ControllersLogic\Containers\InboundCustomClearedLogic;
use Illuminate\Http\JsonResponse;
+1 -1
View File
@@ -178,7 +178,7 @@ return [
// Third Parties
Spatie\Permission\PermissionServiceProvider::class,
Barryvdh\DomPDF\ServiceProvider::class,
// Meneses\LaravelMpdf\LaravelMpdfServiceProvider::class,
Meneses\LaravelMpdf\LaravelMpdfServiceProvider::class,
Maatwebsite\Excel\ExcelServiceProvider::class,
],
Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

@@ -35,23 +35,6 @@
</div>
</div>
</div>
<div class="row m-t-15 align-items-center justify-content-center">
<div class="col d-flex align-items-center justify-content-center">
<hr class="my-4">
<div class="ml-3 mr-3 font-weight-bold">Or</div>
<hr class="my-4">
</div>
</div>
<div class="row m-t-15 align-items-center justify-content-center">
<div class="col">
<div class="btn btn-block btn-outline-dark text-dark btn-lg b-rad-none"><img src="/images/google-icon.png" width="20" height="20" class="mr-2" />Sign In With Google</div>
</div>
</div>
<div class="row m-t-15 align-items-center justify-content-center">
<div class="col">
<div class="btn btn-block btn-complete text-white btn-lg b-rad-none"><img src="/images/facebook-icon.png" width="20" height="20" class="mr-2" />Sign In With Facebook</div>
</div>
</div>
</div>
</div>
</div>
@@ -84,10 +67,4 @@
mixins: [loginFormValidation]
}
</script>
<style scoped>
hr.my-4{
border-top: 1px solid rgba(58, 58, 58, 0.5);
width: 100%;
}
</style>
</script>
+1 -1
View File
@@ -44,7 +44,7 @@ Route::group(['namespace' => 'PackingLists', 'as' => 'packing_list.', 'prefix' =
Route::get('/inbound-custom-cleared', 'InboundCustomClearedController@list')->name('list.inbound.custom.cleared');
Route::put('/switch-packing-list/{id}', 'SwitchPackagePackingListController@switch')->name('switch.packing_list');
Route::group(['namespace' => 'PackageItems', 'prefix' => 'item', 'as' => 'item.'], function () {
Route::group(['namespace' => 'Items', 'prefix' => 'item', 'as' => 'item.'], function () {
Route::get('/{id}/show', 'FetchPackageItemController@fetch')->name('show');
Route::get('/list', 'ListPackageItemsController@list')->name('list');
Route::post('/create', 'CreatePackageItemController@create')->name('create');