sudo nao /etc/wsl.conf
[boot]
systemd=true
[user]
default=zohaib
version: '3.3' | |
services: | |
db: | |
image: mysql:5.7 | |
restart: always | |
environment: | |
MYSQL_ALLOW_EMPTY_PASSWORD: 1 | |
command: mysqld --sql_mode="" | |
ports: | |
- '3506:3306' |
<?php | |
use Illuminate\Database\Migrations\Migration; | |
use Illuminate\Database\Schema\Blueprint; | |
use Illuminate\Support\Facades\Schema; | |
use Illuminate\Support\Facades\DB; | |
return new class extends Migration { | |
/** | |
* Run the migrations. |
import Vue from 'vue'; | |
import { DataOptions } from 'vuetify'; | |
import { Watch } from 'vue-property-decorator'; | |
import Component from 'vue-class-component'; | |
import Toast from '@/utils/toast'; | |
import sleep from '@/utils/sleep'; | |
const initPageSize = 10; | |
@Component |
<?php | |
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
namespace App\Services; |
<?php | |
namespace App\Services; | |
use App\Models\LanguagePhrase; | |
use Illuminate\Filesystem\Filesystem; | |
use Illuminate\Support\Arr; | |
class TranslationScanner | |
{ |