15 | Data to enrich your
16 |
17 | online business
18 |
19 |
20 | 21 | Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo. Elit sunt amet fugiat veniam occaecat fugiat aliqua. 22 |
23 |
2 |
3 | ## About Teamsy
4 |
5 | Teamsy is a single database multi tenant application shell built for the Laracasts series "Single Database Multi Tenancy".
6 |
7 | Use the "Lessons" section below to find the branch that corresponds to each lesson, or just clone the master branch to see the finished product.
8 |
9 | Feel free to use this as a starting point for your next multi tenant application.
10 |
11 | Interact with me on [Twitter](https://twitter.com/iAmKevinMcKee) or open an issue or PR if you'd like to contribute to this project.
12 |
13 | ## Installation
14 |
15 | Clone this repo to get started.
16 |
17 | `git clone https://github.com/iAmKevinMcKee/teamsy.git`
18 |
19 | Install Composer Dependencies
20 |
21 | `composer install`
22 |
23 | Install NPM Dependencies
24 |
25 | `npm install && npm run dev`
26 |
27 | Copy the .env.example file to .env
28 |
29 | `cp .env.example .env`
30 |
31 | Update your .env file to connect to your local database.
32 |
33 | Generate your application keys
34 |
35 | `php artisan key:generate`
36 |
37 | Run the Demo Seeder to get started with a few tenants and some users
38 |
39 | `php artisan migrate:fresh --seed`
40 |
41 | Login to the app on your local maching using the following credentials:
42 |
43 | admin@admin.com / password
44 |
45 | ## License
46 |
47 | This project is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
48 |
--------------------------------------------------------------------------------
/resources/views/components/th.blade.php:
--------------------------------------------------------------------------------
1 | @props([
2 | 'value' => '',
3 | 'label' => '',
4 | 'canSort' => false,
5 | 'sortField' => '',
6 | 'sortAsc' => '',
7 | ])
8 |
9 |