Paypal Standard Payment Gateways App

This commit is contained in:
cuneytsenturk
2017-11-20 17:28:15 +03:00
parent 10024b92f8
commit ed392c74a6
34 changed files with 598 additions and 3 deletions

View File

@ -0,0 +1,21 @@
<?php
namespace Modules\PaypalStandard\Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
class PaypalStandardDatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Model::unguard();
// $this->call("OthersTableSeeder");
}
}