Giter Site home page Giter Site logo

Comments (4)

dsnoeck avatar dsnoeck commented on June 9, 2024

This is probably to change end user interface right ? I would suggest to use a datepicker plugin. Personally, I like https://github.com/dbushell/Pikaday.Then you will be able to use any format you want.

from laravel-enterprise-starter-kit.

mohd-aidi avatar mohd-aidi commented on June 9, 2024

i already have the datepicker plugin..but whenever i try to change the format it doesnt change.. im not sure how this happen..

from laravel-enterprise-starter-kit.

dsnoeck avatar dsnoeck commented on June 9, 2024

Where it doesn't change ? In the input field displayed to the end user ?

Here is my code with pikaday:

@section('head_extra')
  <link href="https://cdnjs.cloudflare.com/ajax/libs/pikaday/1.4.0/css/pikaday.min.css" rel="stylesheet" type="text/css" />
@endsection

@section('content')
...
      <div class="form-group">
        {!! Form::label('start_date', 'Start date'); !!}
        {!! Form::text('start_date', Input::old('start_date'), ['class' => 'form-control start-date-picker', 'readonly' => 'readonly']); !!}
      </div>
...
@endsection

@section('body_bottom')
    <script src="{{ asset('js/control.js') }}" type="text/javascript"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.14.1/moment.min.js" type="text/javascript"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/pikaday/1.4.0/pikaday.min.js" type="text/javascript"></script>
    <script>
      $(function () {
        var pickaday = $('.start-date-picker')[0];
        var picker = new Pikaday({
          field: pickaday,
          format: 'YYYY-MM-DD',
          minDate: new Date()
        });
      });
    </script>
@endsection

from laravel-enterprise-starter-kit.

sroutier avatar sroutier commented on June 9, 2024

Thanks for pitching in Damien. I am assuming that this issue has been resolved as it's over a month old. We can always readdress the question if required.
/S

from laravel-enterprise-starter-kit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.