Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/MinePoS/backend
Browse files Browse the repository at this point in the history
  • Loading branch information
MinePoS Dedicated committed Sep 21, 2018
2 parents 1c74318 + a00c7ed commit 535baff
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 65 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,9 @@ Homestead.json

# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
.rocketeer/

# IDE specific
*.iml
*.iws
*.ipr
.idea/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Backend
# Backend
2 changes: 1 addition & 1 deletion app/Http/Controllers/Admin/Dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function showChangePassword(){


public function doChangePassword(){
if (Hash::check(\Request('current_password'), \Auth::user()->password)) {
if (\Hash::check(\Request('current_password'), \Auth::user()->password)) {
$new1 = \Request('new_password');
$new2 = \Request('new_password_repeat');
if($new1 == $new2){
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Http\Request;
use App\Category;
use App\Order;
use Log;
use Illuminate\Support\Facades\Log;

class HomeController extends Controller
{
Expand Down
3 changes: 2 additions & 1 deletion app/Http/Controllers/PayPalTestController.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
use PayPal\Api\Transaction;
use PayPal\Api\PaymentExecution;
use Andrew\PaypalIPN\PaypalIPNListener;
use Log;
use App\Order;
use Illuminate\Support\Facades\Log;

class PayPalTestController extends Controller
{
public function index(){
Expand Down
2 changes: 1 addition & 1 deletion app/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace App;

use Illuminate\Database\Eloquent\Model;
use DB;
use Illuminate\Support\Facades\DB;
use \DiscordWebhooks\Client;
use \DiscordWebhooks\Embed;

Expand Down
2 changes: 1 addition & 1 deletion app/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace App;

use Illuminate\Database\Eloquent\Model;
use Log;
use Illuminate\Support\Facades\Log;

class Server extends Model
{
Expand Down
59 changes: 0 additions & 59 deletions readme.md

This file was deleted.

0 comments on commit 535baff

Please sign in to comment.