dashboard.blade.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @extends('layouts.admin')
  2. @section('title')
  3. Dashboard
  4. @stop
  5. @section('content')
  6. @if(false)
  7. @foreach($sections as $section)
  8. <div class="col-md-4">
  9. <div class="small-box bg-green">
  10. <div class="inner">
  11. <h3>{{$section->name}}</h3>
  12. <p>{{$section->news_online('section')}} news online</p>
  13. <p>{{$section->news('section')}} news inserite</p>
  14. </div>
  15. </div>
  16. </div>
  17. @endforeach
  18. @foreach($regions as $region)
  19. <div class="col-md-4">
  20. <div class="small-box bg-orange">
  21. <div class="inner">
  22. <h3>{{$region->name}}</h3>
  23. <p>{{$region->news_online('region')}} news online</p>
  24. <p>{{$region->news('region')}} news inserite</p>
  25. </div>
  26. </div>
  27. </div>
  28. @endforeach
  29. @endif
  30. @stop