Skip to content

Commit

Permalink
composer run compile
Browse files Browse the repository at this point in the history
  • Loading branch information
xavi7th committed May 26, 2020
1 parent 2898cf6 commit 89d70e4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions main/app/Modules/CardUser/Models/DebitCardRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@
* @method static \Illuminate\Database\Query\Builder|\App\Modules\CardUser\Models\DebitCardRequest withTrashed()
* @method static \Illuminate\Database\Query\Builder|\App\Modules\CardUser\Models\DebitCardRequest withoutTrashed()
* @mixin \Eloquent
* @property string $state
* @method static \Illuminate\Database\Eloquent\Builder|\App\Modules\CardUser\Models\DebitCardRequest whereState($value)
*/
class DebitCardRequest extends Model
{
Expand Down
2 changes: 2 additions & 0 deletions main/app/Modules/CardUser/Models/LoanRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@
* @method static \Illuminate\Database\Eloquent\Builder|\App\Modules\CardUser\Models\LoanRequest fullyPaid($state)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Modules\CardUser\Models\LoanRequest notApproved()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Modules\CardUser\Models\LoanRequest whereIsFullyRepaid($value)
* @property int $is_fully_paid
* @method static \Illuminate\Database\Eloquent\Builder|\App\Modules\CardUser\Models\LoanRequest whereIsFullyPaid($value)
*/
class LoanRequest extends Model
{
Expand Down
4 changes: 2 additions & 2 deletions webpack.mix.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ mix.webpackConfig({
},
plugins: [
new CleanWebpackPlugin({
dry: mix.inProduction(),
dry: false,
cleanOnceBeforeBuildPatterns: ['js/*', 'css/*', '/img/*', 'fonts/*', 'robots.txt', 'mix-manifest.json',
'./*.js']

Expand Down Expand Up @@ -84,7 +84,7 @@ mix
require('postcss-fixes')(),
],
})
.extract(['vue', 'sweetalert2', 'axios', 'lodash', 'vue-plugin-load-script', 'vue-router']);
.extract();

mix.copyDirectory(__dirname + '/main/resources/site-assets/', 'public_html/basicsite');

Expand Down

0 comments on commit 89d70e4

Please sign in to comment.