File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Codeigniter Admin Panel ( Startup Kit )
22
3+ [ ![ ] ( https://user-images.githubusercontent.com/6220995/72037880-95b78580-32c5-11ea-994c-8165e8a717e6.png )] ( https://user-images.githubusercontent.com/6220995/72037880-95b78580-32c5-11ea-994c-8165e8a717e6.png )
4+
35### Features
46
57- Support Laravel equivalent
810- Forget Password
911
1012
11- ### Installing
12-
13- ` git clone https://github.com/jaydeepakbari/Codeigniter-Admin-Panel.git `
13+ ### Installation
14+
15+ git clone https://github.com/jaydeepakbari/Codeigniter-Admin-Panel.git
16+ cd Codeigniter-Admin-Panel
17+ composer install
18+
19+ ### Database SQL
20+
21+ Find file inside database folder and import in your project database
22+
23+ ### Default Admin Login
24+ 25+
26+ ###Credits
27+ [ ingeniasoftware/luthier-ci] ( https://github.com/ingeniasoftware/luthier-ci " ingeniasoftware/luthier-ci ")
28+ [ tabler/tabler] ( https://github.com/tabler/tabler " tabler/tabler ")
29+ [ illuminate/database] ( https://github.com/illuminate/database " illuminate/database ")
30+ [ illuminate/pagination] ( https://github.com/illuminate/pagination " illuminate/pagination ")
Original file line number Diff line number Diff line change 1+ CREATE TABLE `users ` (
2+ ` id` int (10 ) UNSIGNED NOT NULL ,
3+ ` name` varchar (255 ) COLLATE utf8_unicode_ci NOT NULL ,
4+ ` email` varchar (255 ) COLLATE utf8_unicode_ci NOT NULL ,
5+ ` status` int (1 ) NOT NULL DEFAULT 0 ,
6+ ` password` varchar (255 ) COLLATE utf8_unicode_ci NOT NULL ,
7+ ` created_at` timestamp NULL DEFAULT NULL ,
8+ ` updated_at` timestamp NULL DEFAULT NULL
9+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8 COLLATE= utf8_unicode_ci;
10+
11+ INSERT INTO ` users` (
` id` ,
` name` ,
` email` ,
` status` ,
` password` ,
` created_at` ,
` updated_at` )
VALUES (
1 ,
' Admin' ,
' [email protected] ' ,
1 ,
' $2a$08$BgSQA3LY47V.2DeZdJiwje5TT0FEpYhGzz.YJn5JfSb5X6jPN.9i.' ,
' 2020-01-07 05:19:33' ,
' 2020-01-07 05:19:33' );
12+ ALTER TABLE ` users` ADD PRIMARY KEY (` id` ), ADD UNIQUE KEY ` users_email_unique` (` email` );
13+ ALTER TABLE ` users` MODIFY ` id` int (10 ) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT= 2 ;
You can’t perform that action at this time.
0 commit comments