Last active
May 31, 2019 17:33
-
-
Save uno-de-piera/981b8c81446a2543e246a0a4e9b42fcf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\Statistic; | |
class StatisticController extends Controller | |
{ | |
public function stats() { | |
$period = request('period'); | |
$statistics = Statistic::select('columns') | |
->where('Period', $period) | |
->orderBy('PeriodDate'); | |
$statisticsCurrentYear = clone $statistics; // falla el resultado final | |
$statisticsPreviousYear = clone $statistics; // falla el resultado final | |
// más código aquí | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment