CRUD with date (create and read)









up vote
0
down vote

favorite












I would like to create a CRUD with 2 fields which are name and date.
In my Controller I suppose my function store is not good about date?



public function create()

return view('student.create');



public function store(Request $request)


$request->validate([
'name' => 'required',
'date' => 'required'
]);
Student::create($request->all());
return redirect()->route('student.index')
->with('success', 'save');





Here is my file create.blade.php



<form class="panel-body" action="route('student.store')" method="POST">
@csrf
<fieldset class="form-group">
<label for="form-group-input-1">Name</label>
<input type="text" name="name" class="form-control" id="form-group-input-1">
</fieldset>
<fieldset class="form-group">
<label for="form-group-input-1">Date</label>
<input type="text" name="date" class="form-control" id="form-group-input-1" >
</fieldset>

<a href="route('student.index')" class="btn btn-primary pull-right">Back</a>
<button type="submit" class="btn btn-sm btn-primary">Submit</button>

</form>


And index.blade.php



<table class="table">
<a class="btn btn-sm btn-success" href=" route('student.create') ">Create</a>
<thead>
<tr>
<th>Firstname</th>
<th>Date</th>
</tr>
</thead>
@foreach($students as $student)
<tr>
<td> $student->name</td>
<td> $student->date </td>
<td>
<form method="POST" action=" route('student.destroy', $student) ">
<a class="btn btn-sm btn-warning" href="route('student.edit',$student->id)">Edit</a>
@csrf
@method('DELETE')
<button type="submit" class="btn btn-sm btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
</table>


How to do so that the create from field "date" to be correct ?










share|improve this question

























    up vote
    0
    down vote

    favorite












    I would like to create a CRUD with 2 fields which are name and date.
    In my Controller I suppose my function store is not good about date?



    public function create()

    return view('student.create');



    public function store(Request $request)


    $request->validate([
    'name' => 'required',
    'date' => 'required'
    ]);
    Student::create($request->all());
    return redirect()->route('student.index')
    ->with('success', 'save');





    Here is my file create.blade.php



    <form class="panel-body" action="route('student.store')" method="POST">
    @csrf
    <fieldset class="form-group">
    <label for="form-group-input-1">Name</label>
    <input type="text" name="name" class="form-control" id="form-group-input-1">
    </fieldset>
    <fieldset class="form-group">
    <label for="form-group-input-1">Date</label>
    <input type="text" name="date" class="form-control" id="form-group-input-1" >
    </fieldset>

    <a href="route('student.index')" class="btn btn-primary pull-right">Back</a>
    <button type="submit" class="btn btn-sm btn-primary">Submit</button>

    </form>


    And index.blade.php



    <table class="table">
    <a class="btn btn-sm btn-success" href=" route('student.create') ">Create</a>
    <thead>
    <tr>
    <th>Firstname</th>
    <th>Date</th>
    </tr>
    </thead>
    @foreach($students as $student)
    <tr>
    <td> $student->name</td>
    <td> $student->date </td>
    <td>
    <form method="POST" action=" route('student.destroy', $student) ">
    <a class="btn btn-sm btn-warning" href="route('student.edit',$student->id)">Edit</a>
    @csrf
    @method('DELETE')
    <button type="submit" class="btn btn-sm btn-danger">Delete</button>
    </form>
    </td>
    </tr>
    @endforeach
    </table>


    How to do so that the create from field "date" to be correct ?










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I would like to create a CRUD with 2 fields which are name and date.
      In my Controller I suppose my function store is not good about date?



      public function create()

      return view('student.create');



      public function store(Request $request)


      $request->validate([
      'name' => 'required',
      'date' => 'required'
      ]);
      Student::create($request->all());
      return redirect()->route('student.index')
      ->with('success', 'save');





      Here is my file create.blade.php



      <form class="panel-body" action="route('student.store')" method="POST">
      @csrf
      <fieldset class="form-group">
      <label for="form-group-input-1">Name</label>
      <input type="text" name="name" class="form-control" id="form-group-input-1">
      </fieldset>
      <fieldset class="form-group">
      <label for="form-group-input-1">Date</label>
      <input type="text" name="date" class="form-control" id="form-group-input-1" >
      </fieldset>

      <a href="route('student.index')" class="btn btn-primary pull-right">Back</a>
      <button type="submit" class="btn btn-sm btn-primary">Submit</button>

      </form>


      And index.blade.php



      <table class="table">
      <a class="btn btn-sm btn-success" href=" route('student.create') ">Create</a>
      <thead>
      <tr>
      <th>Firstname</th>
      <th>Date</th>
      </tr>
      </thead>
      @foreach($students as $student)
      <tr>
      <td> $student->name</td>
      <td> $student->date </td>
      <td>
      <form method="POST" action=" route('student.destroy', $student) ">
      <a class="btn btn-sm btn-warning" href="route('student.edit',$student->id)">Edit</a>
      @csrf
      @method('DELETE')
      <button type="submit" class="btn btn-sm btn-danger">Delete</button>
      </form>
      </td>
      </tr>
      @endforeach
      </table>


      How to do so that the create from field "date" to be correct ?










      share|improve this question













      I would like to create a CRUD with 2 fields which are name and date.
      In my Controller I suppose my function store is not good about date?



      public function create()

      return view('student.create');



      public function store(Request $request)


      $request->validate([
      'name' => 'required',
      'date' => 'required'
      ]);
      Student::create($request->all());
      return redirect()->route('student.index')
      ->with('success', 'save');





      Here is my file create.blade.php



      <form class="panel-body" action="route('student.store')" method="POST">
      @csrf
      <fieldset class="form-group">
      <label for="form-group-input-1">Name</label>
      <input type="text" name="name" class="form-control" id="form-group-input-1">
      </fieldset>
      <fieldset class="form-group">
      <label for="form-group-input-1">Date</label>
      <input type="text" name="date" class="form-control" id="form-group-input-1" >
      </fieldset>

      <a href="route('student.index')" class="btn btn-primary pull-right">Back</a>
      <button type="submit" class="btn btn-sm btn-primary">Submit</button>

      </form>


      And index.blade.php



      <table class="table">
      <a class="btn btn-sm btn-success" href=" route('student.create') ">Create</a>
      <thead>
      <tr>
      <th>Firstname</th>
      <th>Date</th>
      </tr>
      </thead>
      @foreach($students as $student)
      <tr>
      <td> $student->name</td>
      <td> $student->date </td>
      <td>
      <form method="POST" action=" route('student.destroy', $student) ">
      <a class="btn btn-sm btn-warning" href="route('student.edit',$student->id)">Edit</a>
      @csrf
      @method('DELETE')
      <button type="submit" class="btn btn-sm btn-danger">Delete</button>
      </form>
      </td>
      </tr>
      @endforeach
      </table>


      How to do so that the create from field "date" to be correct ?







      php laravel






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 12 at 0:04









      anais_stemb

      283




      283






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote



          accepted










          Here is what I did, hope this helpfull:



          In migrate my colume has type datetime



          $table->dateTime('maintenance')->nullable();


          Request rules:



          'maintenance' => 'required|date_format:d-m-Y'


          Request message:



          'maintenance.date_format' => ' Invalid date time ex: 01-07-2020'


          Im my controller at create function



          'maintenance' => date("Y-m-d H:i:s", strtotime($request->maintenance))


          And input also:



          <input type="text" name="maintenance" value=" date("d-m-Y", old('maintenance') ) " />


          I need to read time with d-m-Y format. So add an mutator in model



          protected $appends = ['maintenance_formated'];
          //---
          public function getMaintenanceFormatedAttribute()

          return date("d-m-Y", strtotime($this->maintenance));






          share|improve this answer






















          • thank you a lot :-)
            – anais_stemb
            Nov 12 at 22:19










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53254477%2fcrud-with-date-create-and-read%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote



          accepted










          Here is what I did, hope this helpfull:



          In migrate my colume has type datetime



          $table->dateTime('maintenance')->nullable();


          Request rules:



          'maintenance' => 'required|date_format:d-m-Y'


          Request message:



          'maintenance.date_format' => ' Invalid date time ex: 01-07-2020'


          Im my controller at create function



          'maintenance' => date("Y-m-d H:i:s", strtotime($request->maintenance))


          And input also:



          <input type="text" name="maintenance" value=" date("d-m-Y", old('maintenance') ) " />


          I need to read time with d-m-Y format. So add an mutator in model



          protected $appends = ['maintenance_formated'];
          //---
          public function getMaintenanceFormatedAttribute()

          return date("d-m-Y", strtotime($this->maintenance));






          share|improve this answer






















          • thank you a lot :-)
            – anais_stemb
            Nov 12 at 22:19














          up vote
          0
          down vote



          accepted










          Here is what I did, hope this helpfull:



          In migrate my colume has type datetime



          $table->dateTime('maintenance')->nullable();


          Request rules:



          'maintenance' => 'required|date_format:d-m-Y'


          Request message:



          'maintenance.date_format' => ' Invalid date time ex: 01-07-2020'


          Im my controller at create function



          'maintenance' => date("Y-m-d H:i:s", strtotime($request->maintenance))


          And input also:



          <input type="text" name="maintenance" value=" date("d-m-Y", old('maintenance') ) " />


          I need to read time with d-m-Y format. So add an mutator in model



          protected $appends = ['maintenance_formated'];
          //---
          public function getMaintenanceFormatedAttribute()

          return date("d-m-Y", strtotime($this->maintenance));






          share|improve this answer






















          • thank you a lot :-)
            – anais_stemb
            Nov 12 at 22:19












          up vote
          0
          down vote



          accepted







          up vote
          0
          down vote



          accepted






          Here is what I did, hope this helpfull:



          In migrate my colume has type datetime



          $table->dateTime('maintenance')->nullable();


          Request rules:



          'maintenance' => 'required|date_format:d-m-Y'


          Request message:



          'maintenance.date_format' => ' Invalid date time ex: 01-07-2020'


          Im my controller at create function



          'maintenance' => date("Y-m-d H:i:s", strtotime($request->maintenance))


          And input also:



          <input type="text" name="maintenance" value=" date("d-m-Y", old('maintenance') ) " />


          I need to read time with d-m-Y format. So add an mutator in model



          protected $appends = ['maintenance_formated'];
          //---
          public function getMaintenanceFormatedAttribute()

          return date("d-m-Y", strtotime($this->maintenance));






          share|improve this answer














          Here is what I did, hope this helpfull:



          In migrate my colume has type datetime



          $table->dateTime('maintenance')->nullable();


          Request rules:



          'maintenance' => 'required|date_format:d-m-Y'


          Request message:



          'maintenance.date_format' => ' Invalid date time ex: 01-07-2020'


          Im my controller at create function



          'maintenance' => date("Y-m-d H:i:s", strtotime($request->maintenance))


          And input also:



          <input type="text" name="maintenance" value=" date("d-m-Y", old('maintenance') ) " />


          I need to read time with d-m-Y format. So add an mutator in model



          protected $appends = ['maintenance_formated'];
          //---
          public function getMaintenanceFormatedAttribute()

          return date("d-m-Y", strtotime($this->maintenance));







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 12 at 1:35

























          answered Nov 12 at 1:20









          Truong Dang

          573410




          573410











          • thank you a lot :-)
            – anais_stemb
            Nov 12 at 22:19
















          • thank you a lot :-)
            – anais_stemb
            Nov 12 at 22:19















          thank you a lot :-)
          – anais_stemb
          Nov 12 at 22:19




          thank you a lot :-)
          – anais_stemb
          Nov 12 at 22:19

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53254477%2fcrud-with-date-create-and-read%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Top Tejano songwriter Luis Silva dead of heart attack at 64

          ReactJS Fetched API data displays live - need Data displayed static

          政党