I have a date table like below :
Schema::create('dates', function (Blueprint $table) {
$table->bigIncrements('id');
$table->dateTime('date');
$table->float('price');
$table->timestamps();
});
Now I have a form that submits an start and a finish date so I have 2 variables
$start_date;
$end_date
How can I sort my date table ascending and show the dates between the start_date and the end_date?
$start_dateand$end_date?