Update v1.0.6.4

This commit is contained in:
sujitprasad
2016-02-24 20:38:42 +05:30
parent d39ef2985d
commit 4270cbcfb3
29 changed files with 700 additions and 198 deletions

11
app/Model/kb/Footer.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace App\Model\kb;
use Illuminate\Database\Eloquent\Model;
class Footer extends Model
{
protected $table = 'footer';
protected $fillable = ['title', 'footer'];
}

11
app/Model/kb/Footer2.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace App\Model\kb;
use Illuminate\Database\Eloquent\Model;
class Footer2 extends Model
{
protected $table = 'footer2';
protected $fillable = ['title', 'footer'];
}

11
app/Model/kb/Footer3.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace App\Model\kb;
use Illuminate\Database\Eloquent\Model;
class Footer3 extends Model
{
protected $table = 'footer3';
protected $fillable = ['title', 'footer'];
}

11
app/Model/kb/Footer4.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
namespace App\Model\kb;
use Illuminate\Database\Eloquent\Model;
class Footer4 extends Model
{
protected $table = 'footer4';
protected $fillable = ['title', 'footer'];
}