These files represent the content that has been modified during the tutorial.
To better understand the context, go through the video and/or written tutorial.
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Reading Progress Bar Demo</title> | |
<style> | |
body { | |
font-family: 'Arial', sans-serif; | |
font-size: 18px; |
# xampp/apache/conf/extra/httpd-vhosts.conf | |
<VirtualHost *:80> | |
ServerName localvaren.com | |
ServerAlias localvaren.com | |
DocumentRoot "G:/xampp/htdocs/varen/public" | |
RewriteEngine on | |
RewriteCond %{SERVER_NAME} =www.localvaren.com [OR] | |
RewriteCond %{SERVER_NAME} =localvaren.com | |
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent] |
# xampp/apache/conf/extra/httpd-vhosts.conf | |
<VirtualHost *:80> | |
ServerName localvaren.com | |
ServerAlias localvaren.com | |
DocumentRoot "G:/xampp/htdocs/varen/public" | |
</VirtualHost> | |
<VirtualHost *:443> | |
ServerName localvaren.com |
authorityKeyIdentifier=keyid,issuer | |
basicConstraints=CA:FALSE | |
keyUsage = digitalSignature, nonRepudiation, keyEncipherment, dataEncipherment | |
subjectAltName = @alt_names | |
[alt_names] | |
DNS.1 = localhost | |
DNS.2 = *.localvaren.com | |
DNS.3 = localvaren.com | |
DNS.4 = 127.0.0.1 | |
DNS.5 = 127.0.0.2 |
@echo off | |
set OPENSSL_CONF=./conf/openssl.cnf | |
if not exist .\conf\ssl.crt mkdir .\conf\ssl.crt | |
if not exist .\conf\ssl.key mkdir .\conf\ssl.key | |
bin\openssl req -new -out server.csr | |
bin\openssl rsa -in privkey.pem -out server.key | |
bin\openssl x509 -in server.csr -out server.crt -req -signkey server.key -days 1825 -extfile v3.ext |
These files represent the content that has been modified during the tutorial.
To better understand the context, go through the video and/or written tutorial.
<?php | |
declare(strict_types=1); | |
namespace Tests\Feature; | |
use Tests\TestCase; | |
use Faker\Factory as Faker; | |
class UserControllerTest extends TestCase |
<?php | |
declare(strict_types=1); | |
namespace Tests\Feature; | |
use Tests\TestCase; | |
use Faker\Factory as Faker; | |
class UserControllerTest extends TestCase |
<?php | |
declare(strict_types=1); | |
namespace Tests\Feature; | |
use Tests\TestCase; | |
use Faker\Factory as Faker; | |
class UserControllerTest extends TestCase |
<?php | |
declare(strict_types=1); | |
namespace App\Http\Requests; | |
use Illuminate\Foundation\Http\FormRequest; | |
class CreateUserRequest extends FormRequest | |
{ |