└── livewire
├── satisfiable
├── public
├── favicon.ico
├── robots.txt
├── .htaccess
└── index.php
├── resources
├── css
│ └── app.css
├── js
│ ├── app.js
│ └── bootstrap.js
└── views
│ ├── home.blade.php
│ ├── login.blade.php
│ ├── register.blade.php
│ ├── livewire
│ ├── logout.blade.php
│ ├── home.blade.php
│ ├── tickets.blade.php
│ ├── login.blade.php
│ ├── show-register.blade.php
│ └── comments.blade.php
│ ├── welcome.blade.php
│ ├── layouts
│ └── app.blade.php
│ └── vendor
│ └── livewire
│ ├── bootstrap.blade.php
│ ├── simple-bootstrap.blade.php
│ ├── simple-tailwind.blade.php
│ └── tailwind.blade.php
├── database
├── .gitignore
├── factories
│ ├── SupportTicketFactory.php
│ └── UserFactory.php
├── seeders
│ └── DatabaseSeeder.php
└── migrations
│ ├── 2023_05_07_185038_create_support_tickets_table.php
│ ├── 2014_10_12_100000_create_password_reset_tokens_table.php
│ ├── 2023_05_05_085633_create_comments_table.php
│ ├── 2014_10_12_000000_create_users_table.php
│ ├── 2019_08_19_000000_create_failed_jobs_table.php
│ └── 2019_12_14_000001_create_personal_access_tokens_table.php
├── bootstrap
├── cache
│ └── .gitignore
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── sessions
│ └── .gitignore
│ ├── testing
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── cache
│ ├── data
│ │ └── .gitignore
│ └── .gitignore
│ └── .gitignore
├── tests
├── TestCase.php
├── Unit
│ └── ExampleTest.php
├── Feature
│ └── ExampleTest.php
└── CreatesApplication.php
├── .gitattributes
├── app
├── Http
│ ├── Livewire
│ │ ├── Home.php
│ │ ├── Logout.php
│ │ ├── Tickets.php
│ │ ├── ShowRegister.php
│ │ ├── Login.php
│ │ └── Comments.php
│ ├── Controllers
│ │ └── Controller.php
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── VerifyCsrfToken.php
│ │ ├── PreventRequestsDuringMaintenance.php
│ │ ├── TrimStrings.php
│ │ ├── TrustHosts.php
│ │ ├── Authenticate.php
│ │ ├── ValidateSignature.php
│ │ ├── TrustProxies.php
│ │ └── RedirectIfAuthenticated.php
│ └── Kernel.php
├── Models
│ ├── SupportTicket.php
│ ├── Comment.php
│ └── User.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
├── Console
│ └── Kernel.php
└── Exceptions
│ └── Handler.php
├── package.json
├── vite.config.js
├── .gitignore
├── .editorconfig
├── routes
├── channels.php
├── api.php
├── console.php
└── web.php
├── config
├── cors.php
├── services.php
├── view.php
├── hashing.php
├── broadcasting.php
├── sanctum.php
├── filesystems.php
├── cache.php
├── queue.php
├── mail.php
├── auth.php
├── logging.php
├── database.php
├── app.php
└── session.php
├── phpunit.xml
├── .env.example
├── artisan
├── composer.json
├── README.md
└── package-lock.json
/livewire/satisfiable:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/livewire/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/livewire/resources/css/app.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/livewire/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite*
2 |
--------------------------------------------------------------------------------
/livewire/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/livewire/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/livewire/resources/js/app.js:
--------------------------------------------------------------------------------
1 | import "./bootstrap";
2 |
--------------------------------------------------------------------------------
/livewire/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/livewire/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/livewire/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/livewire/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/livewire/storage/framework/testing/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/livewire/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/livewire/storage/framework/cache/data/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/livewire/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !data/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/livewire/resources/views/home.blade.php:
--------------------------------------------------------------------------------
1 | @extends('layouts.app')
2 |
3 | @section('content')
4 |
5 |
{{ $comment->created_at }}
49 |