Hussien Elshazly

Results 3 issues of Hussien Elshazly

How to translate field name ``` NovaBelongsToDepend::make('Country') ->options(\App\Models\Country::all()), ``` When translate it ``` NovaBelongsToDepend::make(__('Country'),'Country') ->options(\App\Models\Country::all()), ``` I got Error (Not Found App "Name\Class" Nova

ERROR Cannot restart nuxt: Cannot read properties of undefined (reading 'sweetalert') at nuxtVueSweetalert2 (node_modules/vue-sweetalert2/nuxt/index.js:5:50) at installModule (node_modules/@nuxt/kit/dist/index.mjs:2426:101) at async initNuxt (node_modules/nuxt/dist/index.mjs:3533:7) at async _load (node_modules/nuxi/dist/chunks/dev-internal.mjs:199:7) at async load (node_modules/nuxi/dist/chunks/dev-internal.mjs:246:9) at...

bug

I need to search with translatable field ``` public static $searchRelations = [ 'category' => ['title'], ]; ``` title has translatable property of Spatie package ``` public $translatable = ['title'];...