├── .env.example ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Album.php ├── Comment.php ├── Console │ └── Kernel.php ├── Contact.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ └── Controller.php │ ├── Kernel.php │ ├── Livewire │ │ ├── About.php │ │ ├── Comments.php │ │ ├── ContactUs.php │ │ ├── Counter.php │ │ ├── FileUploader.php │ │ ├── Home.php │ │ ├── Login.php │ │ ├── Logout.php │ │ ├── Register.php │ │ ├── Services.php │ │ ├── Tickets.php │ │ └── UserList.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── SupportTicket.php └── User.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── SupportTicketFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2020_04_30_130814_create_comments_table.php │ ├── 2020_05_02_175801_create_support_tickets_table.php │ ├── 2020_08_28_074557_create_albums_table.php │ └── 2020_09_21_071401_create_contacts_table.php └── seeds │ └── DatabaseSeeder.php ├── package-lock.json ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── app.css │ ├── lightbox.css │ └── lightbox.min.css ├── favicon.ico ├── images │ ├── close.png │ ├── loading.gif │ ├── next.png │ └── prev.png ├── index.php ├── js │ ├── app.js │ ├── lightbox-plus-jquery.js │ ├── lightbox-plus-jquery.min.js │ ├── lightbox-plus-jquery.min.map │ ├── lightbox.js │ ├── lightbox.min.js │ └── lightbox.min.map ├── mix-manifest.json └── robots.txt ├── resources ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ └── app.scss └── views │ ├── layouts │ └── app.blade.php │ ├── livewire │ ├── about.blade.php │ ├── comments.blade.php │ ├── contact-us.blade.php │ ├── counter.blade.php │ ├── create.blade.php │ ├── file-uploader.blade.php │ ├── home.blade.php │ ├── login.blade.php │ ├── logout.blade.php │ ├── register.blade.php │ ├── services.blade.php │ ├── tickets.blade.php │ ├── update.blade.php │ ├── user-list.blade.php │ └── user.blade.php │ ├── pagination-links.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── screenshot ├── Livewire-Album.png ├── Livewire-Full_page.png ├── Livewire-Img-Slideshow.png ├── Livewire-Multiple-Img.png ├── Livewire-Post-Img-Comment.png ├── Livewire-Register.png ├── Livewire-User-List.png └── Livewire.png ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY= 4 | APP_DEBUG=true 5 | APP_URL=http://localhost 6 | 7 | LOG_CHANNEL=stack 8 | 9 | DB_CONNECTION=mysql 10 | DB_HOST=127.0.0.1 11 | DB_PORT=3306 12 | DB_DATABASE=laravel 13 | DB_USERNAME=root 14 | DB_PASSWORD= 15 | 16 | BROADCAST_DRIVER=log 17 | CACHE_DRIVER=file 18 | QUEUE_CONNECTION=sync 19 | SESSION_DRIVER=file 20 | SESSION_LIFETIME=120 21 | 22 | REDIS_HOST=127.0.0.1 23 | REDIS_PASSWORD=null 24 | REDIS_PORT=6379 25 | 26 | MAIL_MAILER=smtp 27 | MAIL_HOST=smtp.mailtrap.io 28 | MAIL_PORT=2525 29 | MAIL_USERNAME=null 30 | MAIL_PASSWORD=null 31 | MAIL_ENCRYPTION=null 32 | MAIL_FROM_ADDRESS=null 33 | MAIL_FROM_NAME="${APP_NAME}" 34 | 35 | AWS_ACCESS_KEY_ID= 36 | AWS_SECRET_ACCESS_KEY= 37 | AWS_DEFAULT_REGION=us-east-1 38 | AWS_BUCKET= 39 | 40 | PUSHER_APP_ID= 41 | PUSHER_APP_KEY= 42 | PUSHER_APP_SECRET= 43 | PUSHER_APP_CLUSTER=mt1 44 | 45 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" 46 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" 47 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env 7 | .env.backup 8 | .phpunit.result.cache 9 | Homestead.json 10 | Homestead.yaml 11 | npm-debug.log 12 | yarn-error.log 13 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | disabled: 4 | - unused_use 5 | finder: 6 | not-name: 7 | - index.php 8 | - server.php 9 | js: 10 | finder: 11 | not-name: 12 | - webpack.mix.js 13 | css: true 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
{{$comment->creator->name}}
35 |{{$comment->created_at->diffForHumans()}} 36 |
37 |{{$comment->body}}
42 | @if($comment->image) 43 |Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt consequuntur id accusamus blanditiis sapiente veritatis commodi unde eius a, repellendus, dolores hic excepturi quam ullam exercitationem corporis repellat debitis quibusdam?
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt consequuntur id accusamus blanditiis sapiente veritatis commodi unde eius a, repellendus, dolores hic excepturi quam ullam exercitationem corporis repellat debitis quibusdam?
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt consequuntur id accusamus blanditiis sapiente veritatis commodi unde eius a, repellendus, dolores hic excepturi quam ullam exercitationem corporis repellat debitis quibusdam?
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt consequuntur id accusamus blanditiis sapiente veritatis commodi unde eius a, repellendus, dolores hic excepturi quam ullam exercitationem corporis repellat debitis quibusdam?
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt consequuntur id accusamus blanditiis sapiente veritatis commodi unde eius a, repellendus, dolores hic excepturi quam ullam exercitationem corporis repellat debitis quibusdam?
Lorem ipsum dolor sit amet consectetur adipisicing elit. Sunt consequuntur id accusamus blanditiis sapiente veritatis commodi unde eius a, repellendus, dolores hic excepturi quam ullam exercitationem corporis repellat debitis quibusdam?
{{$ticket->question}}
7 |User Message
12 |{{ session('message') }}
13 |Name | 27 |Action | 29 ||
---|---|---|
NO RECORD FOUND! | ||
{{$user->name}} | 38 |{{$user->email}} | 39 |
40 | |
41 |