Laravel 5 to 6
This commit is contained in:
parent
db4403eda9
commit
eba3641044
6
.env
6
.env
|
@ -1,4 +1,4 @@
|
|||
\APP_NAME=Unioil
|
||||
APP_NAME=Laravel
|
||||
APP_ENV=local
|
||||
APP_KEY=base64:0gU9IIArwNb9IW4nkiuN72zGhw0YrtIVZnM7WJxxD88=
|
||||
APP_DEBUG=true
|
||||
|
@ -10,8 +10,8 @@ DB_CONNECTION=mysql
|
|||
DB_HOST=db_mysql
|
||||
DB_PORT=3306
|
||||
DB_DATABASE=unioil-app
|
||||
DB_USERNAME=armiejean
|
||||
DB_PASSWORD=yourpassword
|
||||
DB_USERNAME=rootuser
|
||||
DB_PASSWORD=password
|
||||
|
||||
BROADCAST_DRIVER=log
|
||||
CACHE_DRIVER=file
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
namespace App\Http\Requests;
|
||||
namespace App\Http\Resources;
|
||||
|
||||
|
||||
use Response;
|
||||
use Illuminate\Http\Request;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
"barryvdh/laravel-cors": "^0.11.2",
|
||||
"fideloper/proxy": "^4.0",
|
||||
"guzzlehttp/guzzle": "^6.3",
|
||||
"laravel/framework": "5.7.*",
|
||||
"laravel/framework": "^6.20",
|
||||
"laravel/passport": "^7.0",
|
||||
"laravel/tinker": "^1.0",
|
||||
"league/flysystem-aws-s3-v3": "^1.0",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +1,6 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
return [
|
||||
|
||||
/*
|
||||
|
@ -88,7 +89,7 @@ return [
|
|||
|
||||
'prefix' => env(
|
||||
'CACHE_PREFIX',
|
||||
str_slug(env('APP_NAME', 'laravel'), '_').'_cache'
|
||||
Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'
|
||||
),
|
||||
|
||||
];
|
||||
|
|
|
@ -44,8 +44,8 @@ return [
|
|||
'host' => env('DB_HOST', 'db_mysql'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'unioil-app'),
|
||||
'username' => env('DB_USERNAME', 'armiejean'),
|
||||
'password' => env('DB_PASSWORD', 'yourpassword'),
|
||||
'username' => env('DB_USERNAME', 'rootuser'),
|
||||
'password' => env('DB_PASSWORD', 'password'),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => 'utf8mb4',
|
||||
'collation' => 'utf8mb4_unicode_ci',
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Support\Str;
|
||||
return [
|
||||
|
||||
/*
|
||||
|
@ -124,7 +124,7 @@ return [
|
|||
|
||||
'cookie' => env(
|
||||
'SESSION_COOKIE',
|
||||
str_slug(env('APP_NAME', 'laravel'), '_').'_session'
|
||||
Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
|
||||
),
|
||||
|
||||
/*
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
# Laravel App
|
||||
app:
|
||||
|
@ -9,8 +11,6 @@ services:
|
|||
working_dir: /var/www
|
||||
volumes:
|
||||
- .:/var/www
|
||||
- ./docker/php/storage:/var/www/storage
|
||||
- ./docker/php/bootstrap/cache:/var/www/bootstrap/cache
|
||||
depends_on:
|
||||
db_mysql:
|
||||
condition: service_healthy
|
||||
|
@ -32,20 +32,20 @@ services:
|
|||
|
||||
# MySQL
|
||||
db_mysql:
|
||||
image: mysql:5.7
|
||||
image: mysql:8.0
|
||||
container_name: db_mysql
|
||||
restart: always
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: root
|
||||
MYSQL_ROOT_PASSWORD: newpassword
|
||||
MYSQL_DATABASE: unioil-app
|
||||
MYSQL_USER: armiejean
|
||||
MYSQL_PASSWORD: yourpassword
|
||||
MYSQL_USER: rootuser
|
||||
MYSQL_PASSWORD: password
|
||||
MYSQL_ALLOW_EMPTY_PASSWORD: "no"
|
||||
|
||||
volumes:
|
||||
- mysql-data:/var/lib/mysql
|
||||
healthcheck:
|
||||
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-uroot", "-proot"]
|
||||
test: ["CMD", "mysqladmin", "ping", "-h", "localhost", "-uroot", "-pnewpassword"]
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Base image
|
||||
# Use PHP 7.4 Alpine (compatible with Laravel 6)
|
||||
FROM php:7.4-fpm-alpine
|
||||
|
||||
# Install required dependencies
|
||||
|
@ -10,7 +10,8 @@ RUN apk add --no-cache \
|
|||
freetype-dev \
|
||||
libzip-dev \
|
||||
zip \
|
||||
unzip
|
||||
unzip \
|
||||
openssl # Laravel 6 requires OpenSSL
|
||||
|
||||
# Install required extensions
|
||||
RUN docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp \
|
||||
|
|
|
@ -20,13 +20,6 @@
|
|||
0 => 'Fideloper\\Proxy\\TrustedProxyServiceProvider',
|
||||
),
|
||||
),
|
||||
'laravel/nexmo-notification-channel' =>
|
||||
array (
|
||||
'providers' =>
|
||||
array (
|
||||
0 => 'Illuminate\\Notifications\\NexmoChannelServiceProvider',
|
||||
),
|
||||
),
|
||||
'laravel/passport' =>
|
||||
array (
|
||||
'providers' =>
|
||||
|
@ -34,13 +27,6 @@
|
|||
0 => 'Laravel\\Passport\\PassportServiceProvider',
|
||||
),
|
||||
),
|
||||
'laravel/slack-notification-channel' =>
|
||||
array (
|
||||
'providers' =>
|
||||
array (
|
||||
0 => 'Illuminate\\Notifications\\SlackChannelServiceProvider',
|
||||
),
|
||||
),
|
||||
'laravel/tinker' =>
|
||||
array (
|
||||
'providers' =>
|
||||
|
@ -50,14 +36,14 @@
|
|||
),
|
||||
'maatwebsite/excel' =>
|
||||
array (
|
||||
'providers' =>
|
||||
array (
|
||||
0 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
|
||||
),
|
||||
'aliases' =>
|
||||
array (
|
||||
'Excel' => 'Maatwebsite\\Excel\\Facades\\Excel',
|
||||
),
|
||||
'providers' =>
|
||||
array (
|
||||
0 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
|
||||
),
|
||||
),
|
||||
'nesbot/carbon' =>
|
||||
array (
|
||||
|
|
|
@ -26,20 +26,18 @@
|
|||
22 => 'Barryvdh\\Cors\\ServiceProvider',
|
||||
23 => 'BeyondCode\\DumpServer\\DumpServerServiceProvider',
|
||||
24 => 'Fideloper\\Proxy\\TrustedProxyServiceProvider',
|
||||
25 => 'Illuminate\\Notifications\\NexmoChannelServiceProvider',
|
||||
26 => 'Laravel\\Passport\\PassportServiceProvider',
|
||||
27 => 'Illuminate\\Notifications\\SlackChannelServiceProvider',
|
||||
28 => 'Laravel\\Tinker\\TinkerServiceProvider',
|
||||
29 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
|
||||
30 => 'Carbon\\Laravel\\ServiceProvider',
|
||||
31 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
|
||||
32 => 'App\\Providers\\AppServiceProvider',
|
||||
33 => 'App\\Providers\\AuthServiceProvider',
|
||||
34 => 'App\\Providers\\EventServiceProvider',
|
||||
35 => 'App\\Providers\\RouteServiceProvider',
|
||||
36 => 'App\\Providers\\CustomPassportServiceProvider',
|
||||
37 => 'Laravel\\Passport\\PassportServiceProvider',
|
||||
38 => 'Barryvdh\\Cors\\ServiceProvider',
|
||||
25 => 'Laravel\\Passport\\PassportServiceProvider',
|
||||
26 => 'Laravel\\Tinker\\TinkerServiceProvider',
|
||||
27 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
|
||||
28 => 'Carbon\\Laravel\\ServiceProvider',
|
||||
29 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
|
||||
30 => 'App\\Providers\\AppServiceProvider',
|
||||
31 => 'App\\Providers\\AuthServiceProvider',
|
||||
32 => 'App\\Providers\\EventServiceProvider',
|
||||
33 => 'App\\Providers\\RouteServiceProvider',
|
||||
34 => 'App\\Providers\\CustomPassportServiceProvider',
|
||||
35 => 'Laravel\\Passport\\PassportServiceProvider',
|
||||
36 => 'Barryvdh\\Cors\\ServiceProvider',
|
||||
),
|
||||
'eager' =>
|
||||
array (
|
||||
|
@ -56,11 +54,11 @@
|
|||
10 => 'Barryvdh\\Cors\\ServiceProvider',
|
||||
11 => 'BeyondCode\\DumpServer\\DumpServerServiceProvider',
|
||||
12 => 'Fideloper\\Proxy\\TrustedProxyServiceProvider',
|
||||
13 => 'Illuminate\\Notifications\\NexmoChannelServiceProvider',
|
||||
14 => 'Laravel\\Passport\\PassportServiceProvider',
|
||||
15 => 'Illuminate\\Notifications\\SlackChannelServiceProvider',
|
||||
16 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
|
||||
17 => 'Carbon\\Laravel\\ServiceProvider',
|
||||
13 => 'Laravel\\Passport\\PassportServiceProvider',
|
||||
14 => 'Laravel\\Tinker\\TinkerServiceProvider',
|
||||
15 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
|
||||
16 => 'Carbon\\Laravel\\ServiceProvider',
|
||||
17 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
|
||||
18 => 'App\\Providers\\AppServiceProvider',
|
||||
19 => 'App\\Providers\\AuthServiceProvider',
|
||||
20 => 'App\\Providers\\EventServiceProvider',
|
||||
|
@ -79,6 +77,7 @@
|
|||
'Illuminate\\Contracts\\Bus\\QueueingDispatcher' => 'Illuminate\\Bus\\BusServiceProvider',
|
||||
'cache' => 'Illuminate\\Cache\\CacheServiceProvider',
|
||||
'cache.store' => 'Illuminate\\Cache\\CacheServiceProvider',
|
||||
'cache.psr6' => 'Illuminate\\Cache\\CacheServiceProvider',
|
||||
'memcached.connector' => 'Illuminate\\Cache\\CacheServiceProvider',
|
||||
'command.cache.clear' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.cache.forget' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
|
@ -86,16 +85,13 @@
|
|||
'command.auth.resets.clear' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.config.cache' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.config.clear' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.db.wipe' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.down' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.environment' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.event.cache' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.event.clear' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.event.list' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.key.generate' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.fresh' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.install' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.refresh' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.reset' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.rollback' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.status' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.optimize' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.optimize.clear' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.package.discover' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
|
@ -117,8 +113,6 @@
|
|||
'command.up' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.view.cache' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.view.clear' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.app.name' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.auth.make' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.cache.table' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.channel.make' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.console.make' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
|
@ -131,7 +125,6 @@
|
|||
'command.listener.make' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.mail.make' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.middleware.make' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.make' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.model.make' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.notification.make' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.notification.table' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
|
@ -151,6 +144,14 @@
|
|||
'migrator' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'migration.repository' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'migration.creator' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.fresh' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.install' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.refresh' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.reset' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.rollback' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.status' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'command.migrate.make' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'composer' => 'Illuminate\\Foundation\\Providers\\ConsoleSupportServiceProvider',
|
||||
'hash' => 'Illuminate\\Hashing\\HashServiceProvider',
|
||||
'hash.driver' => 'Illuminate\\Hashing\\HashServiceProvider',
|
||||
|
@ -172,8 +173,6 @@
|
|||
'translation.loader' => 'Illuminate\\Translation\\TranslationServiceProvider',
|
||||
'validator' => 'Illuminate\\Validation\\ValidationServiceProvider',
|
||||
'validation.presence' => 'Illuminate\\Validation\\ValidationServiceProvider',
|
||||
'command.tinker' => 'Laravel\\Tinker\\TinkerServiceProvider',
|
||||
'NunoMaduro\\Collision\\Contracts\\Provider' => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
|
||||
),
|
||||
'when' =>
|
||||
array (
|
||||
|
@ -213,11 +212,5 @@
|
|||
'Illuminate\\Validation\\ValidationServiceProvider' =>
|
||||
array (
|
||||
),
|
||||
'Laravel\\Tinker\\TinkerServiceProvider' =>
|
||||
array (
|
||||
),
|
||||
'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider' =>
|
||||
array (
|
||||
),
|
||||
),
|
||||
);
|
0
docker/php/storage/framework/sessions/1r7JWNTEjghq12PDqS8ATczR4Sc1fMtoFJRndwHJ
Normal file → Executable file
0
docker/php/storage/framework/sessions/1r7JWNTEjghq12PDqS8ATczR4Sc1fMtoFJRndwHJ
Normal file → Executable file
0
docker/php/storage/framework/sessions/569Z491gulUS5wr0K2eybWLoUYzmjPBckx97yl1b
Normal file → Executable file
0
docker/php/storage/framework/sessions/569Z491gulUS5wr0K2eybWLoUYzmjPBckx97yl1b
Normal file → Executable file
0
docker/php/storage/framework/sessions/5Fti6ax3pAqrs2ONSTMBKZkirmzPSMPZWkPgmhEv
Normal file → Executable file
0
docker/php/storage/framework/sessions/5Fti6ax3pAqrs2ONSTMBKZkirmzPSMPZWkPgmhEv
Normal file → Executable file
0
docker/php/storage/framework/sessions/5PGTowA7h0cjZwtfHg2uCUmKJFdXR98rnTwRqYAx
Normal file → Executable file
0
docker/php/storage/framework/sessions/5PGTowA7h0cjZwtfHg2uCUmKJFdXR98rnTwRqYAx
Normal file → Executable file
0
docker/php/storage/framework/sessions/6IpZxKPcc68FAXh4AI9fKEYahIfMMuNF6qdJbSAP
Normal file → Executable file
0
docker/php/storage/framework/sessions/6IpZxKPcc68FAXh4AI9fKEYahIfMMuNF6qdJbSAP
Normal file → Executable file
0
docker/php/storage/framework/sessions/7gwVzd5uZAqSU7CthUOjPUURt59O3EAyVyiLdSpa
Normal file → Executable file
0
docker/php/storage/framework/sessions/7gwVzd5uZAqSU7CthUOjPUURt59O3EAyVyiLdSpa
Normal file → Executable file
|
@ -0,0 +1 @@
|
|||
a:3:{s:6:"_token";s:40:"0syKFKlwqJGoTYrHWjlWlvN3axI4PZefG9NRHKfd";s:9:"_previous";a:1:{s:3:"url";s:16:"http://localhost";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}
|
0
docker/php/storage/framework/sessions/ALfVdp1GaYjdQBy3gzrc3zHaLw07l0tFSNP8zhrG
Normal file → Executable file
0
docker/php/storage/framework/sessions/ALfVdp1GaYjdQBy3gzrc3zHaLw07l0tFSNP8zhrG
Normal file → Executable file
0
docker/php/storage/framework/sessions/AiShOspzhS8GETvqD766JngFDkG4eABMR7bekKqn
Normal file → Executable file
0
docker/php/storage/framework/sessions/AiShOspzhS8GETvqD766JngFDkG4eABMR7bekKqn
Normal file → Executable file
0
docker/php/storage/framework/sessions/B1XILu7CUh2DQIUQNGuDovzVdaXx4Hly19JKaRq2
Normal file → Executable file
0
docker/php/storage/framework/sessions/B1XILu7CUh2DQIUQNGuDovzVdaXx4Hly19JKaRq2
Normal file → Executable file
0
docker/php/storage/framework/sessions/BRC2x6EaXjL4ANWNSdQFMF2SHrbyWvMo4cX5IDLP
Normal file → Executable file
0
docker/php/storage/framework/sessions/BRC2x6EaXjL4ANWNSdQFMF2SHrbyWvMo4cX5IDLP
Normal file → Executable file
0
docker/php/storage/framework/sessions/BbH01YNfRjuiz2R4SJyrb5cRB4pZoKLjoEpeuOob
Normal file → Executable file
0
docker/php/storage/framework/sessions/BbH01YNfRjuiz2R4SJyrb5cRB4pZoKLjoEpeuOob
Normal file → Executable file
0
docker/php/storage/framework/sessions/FIbQJc2M4riFx3cYzVxLRiBLCok21cgKgZ2mO1Nm
Normal file → Executable file
0
docker/php/storage/framework/sessions/FIbQJc2M4riFx3cYzVxLRiBLCok21cgKgZ2mO1Nm
Normal file → Executable file
0
docker/php/storage/framework/sessions/FMbxsx452SwQgwOakvPG7AsBavCmfNHbvJFQQ5pL
Normal file → Executable file
0
docker/php/storage/framework/sessions/FMbxsx452SwQgwOakvPG7AsBavCmfNHbvJFQQ5pL
Normal file → Executable file
0
docker/php/storage/framework/sessions/Ft5PY6OHruh2ITCrF05aDlh4XdBB1rtg5ZsmTova
Normal file → Executable file
0
docker/php/storage/framework/sessions/Ft5PY6OHruh2ITCrF05aDlh4XdBB1rtg5ZsmTova
Normal file → Executable file
0
docker/php/storage/framework/sessions/FyLaDPuoBsrvM5RIz6iF989YitysqKx9MgSHV0RG
Normal file → Executable file
0
docker/php/storage/framework/sessions/FyLaDPuoBsrvM5RIz6iF989YitysqKx9MgSHV0RG
Normal file → Executable file
0
docker/php/storage/framework/sessions/Gymt2Az5m8PASZ0oXSHG2SI5j2Ba6nQ9YvJW42gM
Normal file → Executable file
0
docker/php/storage/framework/sessions/Gymt2Az5m8PASZ0oXSHG2SI5j2Ba6nQ9YvJW42gM
Normal file → Executable file
0
docker/php/storage/framework/sessions/HgJ3ilklE6DWr5tXTwALmSkG65kok4oYiY7PbGKM
Normal file → Executable file
0
docker/php/storage/framework/sessions/HgJ3ilklE6DWr5tXTwALmSkG65kok4oYiY7PbGKM
Normal file → Executable file
0
docker/php/storage/framework/sessions/Mxh0RG9352VhthLZixhXyQNrc3IAKcYudgmwGwmI
Normal file → Executable file
0
docker/php/storage/framework/sessions/Mxh0RG9352VhthLZixhXyQNrc3IAKcYudgmwGwmI
Normal file → Executable file
0
docker/php/storage/framework/sessions/N5xtdizL6UbMYXwKRB52lrDALvvYbKf2qNUqg8dn
Normal file → Executable file
0
docker/php/storage/framework/sessions/N5xtdizL6UbMYXwKRB52lrDALvvYbKf2qNUqg8dn
Normal file → Executable file
0
docker/php/storage/framework/sessions/NizgshpBufuOaTHek6NVJtnSpqxfZiJj6fMPydWq
Normal file → Executable file
0
docker/php/storage/framework/sessions/NizgshpBufuOaTHek6NVJtnSpqxfZiJj6fMPydWq
Normal file → Executable file
0
docker/php/storage/framework/sessions/NjO05r3jy7x9yyenHIKOWgRCS0wCUfoFFwq7za8s
Normal file → Executable file
0
docker/php/storage/framework/sessions/NjO05r3jy7x9yyenHIKOWgRCS0wCUfoFFwq7za8s
Normal file → Executable file
0
docker/php/storage/framework/sessions/Npz20GKXqFd7hAIHTsgegMP75xHZRon5k4o2MCu0
Normal file → Executable file
0
docker/php/storage/framework/sessions/Npz20GKXqFd7hAIHTsgegMP75xHZRon5k4o2MCu0
Normal file → Executable file
0
docker/php/storage/framework/sessions/OE3gu8z4fqwip2tbv9Xfr5SkimNUTkvq7WxjiZ7p
Normal file → Executable file
0
docker/php/storage/framework/sessions/OE3gu8z4fqwip2tbv9Xfr5SkimNUTkvq7WxjiZ7p
Normal file → Executable file
0
docker/php/storage/framework/sessions/OnTjbS4EbdISntD87APpQT4jujf51BJSHVpn5raH
Normal file → Executable file
0
docker/php/storage/framework/sessions/OnTjbS4EbdISntD87APpQT4jujf51BJSHVpn5raH
Normal file → Executable file
0
docker/php/storage/framework/sessions/P1Gq7Vz4nvtlAz8oEJCtslHCPOIdjrw2OeKRhR8J
Normal file → Executable file
0
docker/php/storage/framework/sessions/P1Gq7Vz4nvtlAz8oEJCtslHCPOIdjrw2OeKRhR8J
Normal file → Executable file
|
@ -0,0 +1 @@
|
|||
a:3:{s:6:"_token";s:40:"EPcDXgvbTT8qKgddoDarrwOifxhSP1EU1GeWc2sF";s:9:"_previous";a:1:{s:3:"url";s:16:"http://localhost";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}
|
0
docker/php/storage/framework/sessions/Q21G7LiOaaZLCLR6ZDFbeyaqBN1fCTBLXU75GRRC
Normal file → Executable file
0
docker/php/storage/framework/sessions/Q21G7LiOaaZLCLR6ZDFbeyaqBN1fCTBLXU75GRRC
Normal file → Executable file
0
docker/php/storage/framework/sessions/RTcl1i8lN3QDe4s8kpwSIaHnjONlcY1Wtr5XTPkM
Normal file → Executable file
0
docker/php/storage/framework/sessions/RTcl1i8lN3QDe4s8kpwSIaHnjONlcY1Wtr5XTPkM
Normal file → Executable file
0
docker/php/storage/framework/sessions/SQ4wwyV55d5NqGvlPJ8HUv5jFV5Ya0yM84D4gkYR
Normal file → Executable file
0
docker/php/storage/framework/sessions/SQ4wwyV55d5NqGvlPJ8HUv5jFV5Ya0yM84D4gkYR
Normal file → Executable file
0
docker/php/storage/framework/sessions/TSzUVtOsYnGfZXJCyQmHNW4itpx7DmTPVNLysy7y
Normal file → Executable file
0
docker/php/storage/framework/sessions/TSzUVtOsYnGfZXJCyQmHNW4itpx7DmTPVNLysy7y
Normal file → Executable file
|
@ -0,0 +1 @@
|
|||
a:3:{s:6:"_token";s:40:"Z4fgHW71XT9oeQqB3pm40UzVKnY4SCCQ90zHQvOl";s:9:"_previous";a:1:{s:3:"url";s:16:"http://localhost";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}
|
0
docker/php/storage/framework/sessions/U75tIYQeXcoer2H8QHb7pzJJnpRYMUjKSe2J8Bra
Normal file → Executable file
0
docker/php/storage/framework/sessions/U75tIYQeXcoer2H8QHb7pzJJnpRYMUjKSe2J8Bra
Normal file → Executable file
0
docker/php/storage/framework/sessions/UsYpyk0XRHL3ltz7heE3WRX7eMVvUflq5ZKNMan1
Normal file → Executable file
0
docker/php/storage/framework/sessions/UsYpyk0XRHL3ltz7heE3WRX7eMVvUflq5ZKNMan1
Normal file → Executable file
0
docker/php/storage/framework/sessions/VfN6R6DzmdiubgYDQ915uM5MZ8gi4F1BWv7QVU4R
Normal file → Executable file
0
docker/php/storage/framework/sessions/VfN6R6DzmdiubgYDQ915uM5MZ8gi4F1BWv7QVU4R
Normal file → Executable file
0
docker/php/storage/framework/sessions/Wi5Rclb279Xuk69AhzL9R6vkqFCq9e5kpQVt5TD0
Normal file → Executable file
0
docker/php/storage/framework/sessions/Wi5Rclb279Xuk69AhzL9R6vkqFCq9e5kpQVt5TD0
Normal file → Executable file
0
docker/php/storage/framework/sessions/XAp2ZE1TmWUiN7CiUdFCx0MWMM0Z9Z3UtI1rD3I6
Normal file → Executable file
0
docker/php/storage/framework/sessions/XAp2ZE1TmWUiN7CiUdFCx0MWMM0Z9Z3UtI1rD3I6
Normal file → Executable file
0
docker/php/storage/framework/sessions/XZPYiwwCh2oDMMlJFOf9BioWKCNS1zDUDDWuwVvN
Normal file → Executable file
0
docker/php/storage/framework/sessions/XZPYiwwCh2oDMMlJFOf9BioWKCNS1zDUDDWuwVvN
Normal file → Executable file
0
docker/php/storage/framework/sessions/XtFsywZBUahP8LoLDiIxCyToetLbpX48ku6558wm
Normal file → Executable file
0
docker/php/storage/framework/sessions/XtFsywZBUahP8LoLDiIxCyToetLbpX48ku6558wm
Normal file → Executable file
|
@ -0,0 +1 @@
|
|||
a:3:{s:6:"_token";s:40:"9xH75KiAI41SvNGkh1QZM4JSp2KyZsUR4voQtHve";s:9:"_previous";a:1:{s:3:"url";s:16:"http://localhost";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}
|
0
docker/php/storage/framework/sessions/aDvck6TxRwwdMTVHq9hcPslibVbiDM5LakBuyHAI
Normal file → Executable file
0
docker/php/storage/framework/sessions/aDvck6TxRwwdMTVHq9hcPslibVbiDM5LakBuyHAI
Normal file → Executable file
0
docker/php/storage/framework/sessions/bV2sBmwBVCeSiNIR4pOzlkbjGa4bOOAAybwMH9l7
Normal file → Executable file
0
docker/php/storage/framework/sessions/bV2sBmwBVCeSiNIR4pOzlkbjGa4bOOAAybwMH9l7
Normal file → Executable file
0
docker/php/storage/framework/sessions/bsdy0UsAcodrtLtZhSMNxBULx39keIoo5QVJy4tm
Normal file → Executable file
0
docker/php/storage/framework/sessions/bsdy0UsAcodrtLtZhSMNxBULx39keIoo5QVJy4tm
Normal file → Executable file
0
docker/php/storage/framework/sessions/dbrUlOE282G0FSnjR5LuyxN7ZPXJH0hhf57Zyjzd
Normal file → Executable file
0
docker/php/storage/framework/sessions/dbrUlOE282G0FSnjR5LuyxN7ZPXJH0hhf57Zyjzd
Normal file → Executable file
0
docker/php/storage/framework/sessions/dsqsjbaZBLqt3kW60UIHrEK3O89LpkFYjwH6M9KK
Normal file → Executable file
0
docker/php/storage/framework/sessions/dsqsjbaZBLqt3kW60UIHrEK3O89LpkFYjwH6M9KK
Normal file → Executable file
0
docker/php/storage/framework/sessions/eT5eQjtyoqJx0nwtUcfAYpByP1lGFko6YFCZS69k
Normal file → Executable file
0
docker/php/storage/framework/sessions/eT5eQjtyoqJx0nwtUcfAYpByP1lGFko6YFCZS69k
Normal file → Executable file
|
@ -0,0 +1 @@
|
|||
a:3:{s:6:"_token";s:40:"xFcnBhW7WngztJZPzqlogxoGJzt9DuDhJBIPZXTg";s:9:"_previous";a:1:{s:3:"url";s:16:"http://localhost";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}
|
0
docker/php/storage/framework/sessions/fCBOf6mdZNM8O6sR4B610WXRLkgcq4p0qMiFbYVr
Normal file → Executable file
0
docker/php/storage/framework/sessions/fCBOf6mdZNM8O6sR4B610WXRLkgcq4p0qMiFbYVr
Normal file → Executable file
0
docker/php/storage/framework/sessions/g6iyLIIxnTWV27LxoWZqoLtyQRFy4iG6q6XWNrmc
Normal file → Executable file
0
docker/php/storage/framework/sessions/g6iyLIIxnTWV27LxoWZqoLtyQRFy4iG6q6XWNrmc
Normal file → Executable file
0
docker/php/storage/framework/sessions/htP1DlqlqCsAlfgBzrIWDD7zRoPmuE2zj7Kzq8Xd
Normal file → Executable file
0
docker/php/storage/framework/sessions/htP1DlqlqCsAlfgBzrIWDD7zRoPmuE2zj7Kzq8Xd
Normal file → Executable file
0
docker/php/storage/framework/sessions/iNrqBLgT5WIKKLFjm1bbyzsP0oZGTCg6io0653FL
Normal file → Executable file
0
docker/php/storage/framework/sessions/iNrqBLgT5WIKKLFjm1bbyzsP0oZGTCg6io0653FL
Normal file → Executable file
0
docker/php/storage/framework/sessions/izAxbiyhunWiUYrgvIPV58ek5DYL11MaXnuu5GiD
Normal file → Executable file
0
docker/php/storage/framework/sessions/izAxbiyhunWiUYrgvIPV58ek5DYL11MaXnuu5GiD
Normal file → Executable file
0
docker/php/storage/framework/sessions/j3DwxEsHSXMsKI5rgavMpHe8mSbER6Q0pR5ifP2m
Normal file → Executable file
0
docker/php/storage/framework/sessions/j3DwxEsHSXMsKI5rgavMpHe8mSbER6Q0pR5ifP2m
Normal file → Executable file
0
docker/php/storage/framework/sessions/knMVKxolJxejSStzlOgni5qS6vrfQbEix5juYCJd
Normal file → Executable file
0
docker/php/storage/framework/sessions/knMVKxolJxejSStzlOgni5qS6vrfQbEix5juYCJd
Normal file → Executable file
0
docker/php/storage/framework/sessions/koQ4LaHqWUOxoiekpgTO4q0ktQT1tXoSx6vBVV3n
Normal file → Executable file
0
docker/php/storage/framework/sessions/koQ4LaHqWUOxoiekpgTO4q0ktQT1tXoSx6vBVV3n
Normal file → Executable file
0
docker/php/storage/framework/sessions/kzzibm0u6NgBt0hPBRIqN2IcNMk9dK26lPBhgNqN
Normal file → Executable file
0
docker/php/storage/framework/sessions/kzzibm0u6NgBt0hPBRIqN2IcNMk9dK26lPBhgNqN
Normal file → Executable file
0
docker/php/storage/framework/sessions/lH85KNd9U6HWvznlDykWbOE1eKOzUL04ZVJu4gZw
Normal file → Executable file
0
docker/php/storage/framework/sessions/lH85KNd9U6HWvznlDykWbOE1eKOzUL04ZVJu4gZw
Normal file → Executable file
0
docker/php/storage/framework/sessions/lpTFTqeqMxNm8hTY2MV6DUjiSGPykeFrnINQMx1I
Normal file → Executable file
0
docker/php/storage/framework/sessions/lpTFTqeqMxNm8hTY2MV6DUjiSGPykeFrnINQMx1I
Normal file → Executable file
0
docker/php/storage/framework/sessions/pHTpxfO1f1XGDNGMyVLLwOKYYAEZFHPL2rGNwxGV
Normal file → Executable file
0
docker/php/storage/framework/sessions/pHTpxfO1f1XGDNGMyVLLwOKYYAEZFHPL2rGNwxGV
Normal file → Executable file
0
docker/php/storage/framework/sessions/pIcpCobTI91prfV7VTmbTmTEdWbt0eALKCTCtqDn
Normal file → Executable file
0
docker/php/storage/framework/sessions/pIcpCobTI91prfV7VTmbTmTEdWbt0eALKCTCtqDn
Normal file → Executable file
0
docker/php/storage/framework/sessions/qgXUIYLvCOBU8S7WG5xT3Yt6954V0uBj3dZZlchN
Normal file → Executable file
0
docker/php/storage/framework/sessions/qgXUIYLvCOBU8S7WG5xT3Yt6954V0uBj3dZZlchN
Normal file → Executable file
0
docker/php/storage/framework/sessions/uKneeaZYLS2TDoENf4g3oFQJvY7EQZOWwOoCRy7C
Normal file → Executable file
0
docker/php/storage/framework/sessions/uKneeaZYLS2TDoENf4g3oFQJvY7EQZOWwOoCRy7C
Normal file → Executable file
0
docker/php/storage/framework/sessions/vJf2H0sfWQdsag2ibmbNSrwyVoAnfHLjGSw0tlQo
Normal file → Executable file
0
docker/php/storage/framework/sessions/vJf2H0sfWQdsag2ibmbNSrwyVoAnfHLjGSw0tlQo
Normal file → Executable file
0
docker/php/storage/framework/sessions/vTQgJsnMxkZoSEb9Nm6ToRxIsjaLKuV2rX7WyAt4
Normal file → Executable file
0
docker/php/storage/framework/sessions/vTQgJsnMxkZoSEb9Nm6ToRxIsjaLKuV2rX7WyAt4
Normal file → Executable file
0
docker/php/storage/framework/sessions/vXpF05n7Nkz8kzr5IyIMGmdY3HVsXcDFjD24HfZK
Normal file → Executable file
0
docker/php/storage/framework/sessions/vXpF05n7Nkz8kzr5IyIMGmdY3HVsXcDFjD24HfZK
Normal file → Executable file
0
docker/php/storage/framework/sessions/xY2dXGA4wWDgKBtYAof8fZeFyS7sUDVwNbcojpgJ
Normal file → Executable file
0
docker/php/storage/framework/sessions/xY2dXGA4wWDgKBtYAof8fZeFyS7sUDVwNbcojpgJ
Normal file → Executable file
0
docker/php/storage/framework/sessions/zlo1vQ2l7QTt3l5b84JwYTs7KhMzYBJNcuJSe1Xs
Normal file → Executable file
0
docker/php/storage/framework/sessions/zlo1vQ2l7QTt3l5b84JwYTs7KhMzYBJNcuJSe1Xs
Normal file → Executable file
0
docker/php/storage/framework/sessions/zoE5GtUCSMRs4mutcAayMgSnrq2WSXMndsjKXDE7
Normal file → Executable file
0
docker/php/storage/framework/sessions/zoE5GtUCSMRs4mutcAayMgSnrq2WSXMndsjKXDE7
Normal file → Executable file
0
docker/php/storage/framework/views/557f762e22d1021da6140ce722d898722a87c630.php
Normal file → Executable file
0
docker/php/storage/framework/views/557f762e22d1021da6140ce722d898722a87c630.php
Normal file → Executable file
0
docker/php/storage/framework/views/7bdeb8b0c526bafc45b4cf9183b44ebc3b0f0478.php
Normal file → Executable file
0
docker/php/storage/framework/views/7bdeb8b0c526bafc45b4cf9183b44ebc3b0f0478.php
Normal file → Executable file
0
docker/php/storage/framework/views/a4c5dc594cb4ed73c3cc667cc348d87139a14d63.php
Normal file → Executable file
0
docker/php/storage/framework/views/a4c5dc594cb4ed73c3cc667cc348d87139a14d63.php
Normal file → Executable file
0
docker/php/storage/framework/views/c6d615eb91fe3a0edd449165e94d034703bbb84d.php
Normal file → Executable file
0
docker/php/storage/framework/views/c6d615eb91fe3a0edd449165e94d034703bbb84d.php
Normal file → Executable file
|
@ -0,0 +1,96 @@
|
|||
<!doctype html>
|
||||
<html lang="<?php echo e(app()->getLocale()); ?>">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>Laravel</title>
|
||||
|
||||
<!-- Fonts -->
|
||||
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- Styles -->
|
||||
<style>
|
||||
html, body {
|
||||
background-color: #fff;
|
||||
color: #636b6f;
|
||||
font-family: 'Nunito', sans-serif;
|
||||
font-weight: 200;
|
||||
height: 100vh;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.full-height {
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.flex-center {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.position-ref {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.top-right {
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 18px;
|
||||
}
|
||||
|
||||
.content {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 84px;
|
||||
}
|
||||
|
||||
.links > a {
|
||||
color: #636b6f;
|
||||
padding: 0 25px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
letter-spacing: .1rem;
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.m-b-md {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flex-center position-ref full-height">
|
||||
<?php if(Route::has('login')): ?>
|
||||
<div class="top-right links">
|
||||
<?php if(auth()->guard()->check()): ?>
|
||||
<a href="<?php echo e(url('/home')); ?>">Home</a>
|
||||
<?php else: ?>
|
||||
<a href="<?php echo e(route('login')); ?>">Login</a>
|
||||
<a href="<?php echo e(route('register')); ?>">Register</a>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="content">
|
||||
<div class="title m-b-md">
|
||||
Laravel
|
||||
</div>
|
||||
|
||||
<div class="links">
|
||||
<a href="https://laravel.com/docs">Documentation</a>
|
||||
<a href="https://laracasts.com">Laracasts</a>
|
||||
<a href="https://laravel-news.com">News</a>
|
||||
<a href="https://nova.laravel.com">Nova</a>
|
||||
<a href="https://forge.laravel.com">Forge</a>
|
||||
<a href="https://github.com/laravel/laravel">GitHub</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
<?php /**PATH /var/www/resources/views/welcome.blade.php ENDPATH**/ ?>
|
0
docker/php/storage/framework/views/db4b9232a3b0957f912084f26d9041e8a510bd6c.php
Normal file → Executable file
0
docker/php/storage/framework/views/db4b9232a3b0957f912084f26d9041e8a510bd6c.php
Normal file → Executable file
0
docker/php/storage/framework/views/e7ac274255da24ad5c9a63a3e97c4afea0bdf25f.php
Normal file → Executable file
0
docker/php/storage/framework/views/e7ac274255da24ad5c9a63a3e97c4afea0bdf25f.php
Normal file → Executable file
Loading…
Reference in New Issue