Advertisement
Guest User

Untitled

a guest
Jan 27th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. use Carbon\Carbon;
  2.  
  3. class EventController extends \BaseController {
  4.     public function index() {
  5.         .........
  6.         $dt = Carbon::now();
  7.             $dateNow = $dt->toDateTimeString();
  8.        
  9.         View::share('dateNow', $dateNow);
  10.  
  11.         albo
  12.  
  13.         return View::make('jakis widok')->with(......., 'dateNow', $dateNow);
  14.     }
  15. }
  16.  
  17. w widoku example.blade.php
  18.  
  19. @if($jakis_obiekt->updated_at >= $dateNow)
  20.     jakis kod
  21. @endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement