Skip to content

Commit b4891ff

Browse files
committed
added TailwindCSS
1 parent f1e8f68 commit b4891ff

15 files changed

+114310
-76
lines changed

README.md

-20
Original file line numberDiff line numberDiff line change
@@ -1,20 +0,0 @@
1-
2-
# Contacts
3-
- Custom fields , bounded to list
4-
5-
# Lists
6-
- Imports
7-
- Exports ( Export subscried contacts, Export unsubscribed contacts )
8-
- Fields
9-
- Forms
10-
11-
# Campaigns
12-
13-
# Templates
14-
15-
# Reports
16-
17-
# Connect to SES and SNS
18-
19-
# Global
20-
- check validations for all resources

TODO.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Contacts
2+
- Custom fields , bounded to list
3+
4+
# Lists
5+
- Imports
6+
- Exports ( Export subscried contacts, Export unsubscribed contacts )
7+
- Fields
8+
- Forms
9+
- On lists page add pagination
10+
11+
# Campaigns
12+
13+
# Templates
14+
15+
# Reports
16+
17+
# Connect to SES and SNS
18+
19+
# Global
20+
- check validations for all resources

app/Http/Controllers/ListsController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class ListsController extends Controller
1616
*/
1717
public function index()
1818
{
19-
$lists = Lists::all();
19+
$lists = Lists::orderBy('id', 'desc')->get();
2020
return view('lists.index', compact('lists'));
2121
}
2222

0 commit comments

Comments
 (0)