Commit eebbc082 authored by Taylor Otwell's avatar Taylor Otwell

added back .gitignores

parent f0f3dffc
local/*
\ No newline at end of file
<?php
return array(
'url' => 'http://localhost/laravel/public'
);
\ No newline at end of file
<?php
namespace Entities;
class User extends \Eloquent {
public function friends()
{
return $this->has_many('Entities\\Friend');
}
public function roles()
{
return $this->has_and_belongs_to_many('Role');
}
}
class Friend extends \Eloquent {}
\ No newline at end of file
<?php
class Role extends \Eloquent {}
\ No newline at end of file
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
\ No newline at end of file
*.sqlite
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment