Support the ongoing development of Laravel.io →
Database Eloquent Blade

Hello awesome Laravel community!!!

This is my events table in DB

			$table->increments('id');
			$table->string('title');
			$table->text('description');
			$table->string('categorie');
			$table->dateTime('datetimefrom');
			$table->dateTime('datetimeto');
			$table->time('timefrom');
			$table->time('timeto');
			$table->string('location');
			$table->string('image');
			$table->integer('user_id');
			$table->timestamps();

This is my Events controller!

//if validated makeing database insert!
    	$dateandtime = Input::get('datetimefrom');
    	$procedure = new Procedure;
    	$procedure->title = Input::get('title');
    	$procedure->description = Input::get('description');
    	$procedure->categorie = Input::get('categorie');
    	$procedure->datetimefrom = Input::get('datetimefrom');
    	$procedure->datetimeto = Input::get('datetimefrom');    
    	$procedure->location = 'Rīga, Lāčplēša iela 41/2';
    	$procedure->image = Input::get('image');
    	$procedure->user_id = Auth::user()->id;    	
    	$procedure->save();

The thing is with datetimefrom, datetimeto, timefrom, timeto,

These columns are, so I would be able to filter events by dateTime and by time! But I do not like to have so much fields in form!

So the question is can I use just one field "datetimefrom" and based on that field calculate other fields, take time from "datetimefrom" using $date->format('time') and post it in "timefrom"

Take "datetimefrom" field and add using this --> $date = new Date('+4 hour'); and pass it to "datetimeto"

and after that take this new date and format $date->format('time') and pass this to timeto.

I am using this package --> http://jenssegers.be/projects/laravel-date

I am wondering is it possible, and what could be solution to make it happen!

Thanks you all in advance!

Last updated 2 years ago.
0

So, just to make sure that I understand, you want to ask for the datetimefrom only then calculate the other three based on that value? I don't see why you couldn't do that right in the controller. Just do all those calculations before you assign the values to the Event object and insert.

Does this help or am I missing something?

Last updated 2 years ago.
0

noelmcavoy said:

So, just to make sure that I understand, you want to ask for the datetimefrom only then calculate the other three based on that value? I don't see why you couldn't do that right in the controller. Just do all those calculations before you assign the values to the Event object and insert.

Does this help or am I missing something?

Thanks, Yes, that's right! But how to do it? How to use that Event object?

Last updated 2 years ago.
0

You could use a model observer, but in this case I think using a mutator on the model would be the easier choice.

http://laravel.com/docs/eloquent#model-observers

http://laravel.com/docs/eloquent#accessors-and-mutators

Last updated 2 years ago.
0

In your Procedure model you can do something like:

public function setDatetimefromAttribute($value) {
    /** Set the initital value **/
    $this->attributes['datetimefrom'] = $value;

    /** Do all your calculations and set those fields. **/
    $this->attributes['timefrom'] = 'do your calculation';

}
Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

LOGINGRUPA logingrupa Joined 24 Mar 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.