Bug fixes

This commit is contained in:
Hillel Coren 2015-04-12 12:43:51 +03:00
parent a73bdab540
commit 0e2eba4521
2 changed files with 1 additions and 28 deletions

View File

@ -7,7 +7,6 @@ use Session;
use Utils;
use View;
use Validator;
zz
use App\Models\Client;
use App\Ninja\Repositories\CreditRepository;

View File

@ -20,32 +20,6 @@ class ConstantsSeeder extends Seeder
public function run()
{
// TEST DATA
/*
$contact = new Contact;
$contact->first_name = 'Hillel';
$contact->last_name = 'Hillel';
$contact->email = 'hillelcoren@gmail.com';
$contact->last_name = '2125551234';
$client->contacts()->save($contact);
$invoice = new Invoice;
$invoice->invoice_number = '0001';
$client->invoices()->save($invoice);
$invoice = new Invoice;
$invoice->invoice_number = '0002';
$client->invoices()->save($invoice);
$invoice = new Invoice;
$invoice->invoice_number = '0003';
$client->invoices()->save($invoice);
$invoice = new Invoice;
$invoice->invoice_number = '0004';
$client->invoices()->save($invoice);
*/
PaymentType::create(array('name' => 'Apply Credit'));
PaymentType::create(array('name' => 'Bank Transfer'));
PaymentType::create(array('name' => 'Cash'));