Navigation

    Bagisto Forum

    Bagisto

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. sebastian
    S
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    sebastian

    @sebastian

    0
    Reputation
    6
    Posts
    4
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    sebastian Follow

    Posts made by sebastian

    • Cannot turn vue.js to production mode, still getting the warning "You are running Vue in development ....
      "You are running Vue in development mode. Make sure to turn on production mode when deploying for production. See more tips at
      

      Tried npm run development, npm run watch, php artisan config:cache

      Tried to put in app.js > Vue.config.productionTip = false

      Tried to put .env > APP_DEBUG = false ( it works only for db bar not for vue.js)
      Tried to put .env > APP_ENV = production without success.

      Can someone help ? It does only on frontend.

      posted in General Discussion
      S
      sebastian
    • RE: Login form - Translation of error messages

      Still having the same problem, but with the admin errors translation, I changed the locale, but without success

      webkul/admin/src/resources/assets/js/app.js

      Snímek obrazovky 2020-05-13 v 20.19.48.png

      posted in Knowledge Base
      S
      sebastian
    • Translate admin validation errors

      Hello, can someone help me with translating errors in admin ? I have tried to change the locale of vee-validate but without success.
      Thanks

      posted in General Discussion
      S
      sebastian
    • Format Date picker on admin panel - flatpickr

      Hello, how to change the format of the date from Y-m-d to d.m.Y, also change the name of months.

      I have tried some solutions from GitHub, adding a locale and file but without success.

      Maybe im adding the file in a bad directory.

      Please Help :]

      Screenshot

      posted in General Discussion
      S
      sebastian
    • RE: Dateformat in Datagrid

      For anyone still struggling with there here is the correct answer

      
      'wrapper' => function ($data) {
             return date_format(date_create($data->created_at), 'd.m.Y H:i');   
      },
      
      
      
      posted in General Discussion
      S
      sebastian
    • RE: Dateformat in Datagrid

      For anyone still struggling here is the solution

      
                  'wrapper' => function ($data) {   
                      return date('d.m.Y H:i:s');                   
                  },
      
      
      posted in General Discussion
      S
      sebastian