01.
About
about.blade.php
1
namespace App\Education\BSc;
2
3
class Me extends BSc {
4
public $major = "Computer Science and Security";
5
}
6
...
index.tsx
1
// some of my daily pills
2
3
interface Technology {
4
name: string;
5
description?: string | null;
6
}
7
8
const PlaygroundToys: Array<Technology> = [
9
name: Angular
name: Astro
name: CodeIgniter
name: Docker
name: Git
name: Laravel
name: MongoDB
name: Next
name: Nuxt
name: React
name: Tailwind
name: Vue
10
];
11
...
03.