Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. @extends('layouts.main')
  2.  
  3. @section('styles')
  4. button{
  5. background: transparent;
  6. border: transparent;
  7. }
  8.  
  9. div.dates{
  10. display: inline-flex;
  11. }
  12.  
  13.  
  14. #addDate,#subDate
  15. {
  16. height: 100px;
  17. }
  18.  
  19. h4{
  20. margin: auto;
  21. }
  22.  
  23. @endsection
  24.  
  25. @section('content')
  26. <div class="row" style="margin-top: 20px;">
  27. <div class="container">
  28. <div class="col-md-2 col-sm-8">
  29. {{ $futsal->name}}
  30. </div>
  31. <div class="col-md-6 col-sm-offset-3 col-md-offset-3">
  32. <div class="row dates">
  33. <button id="subDate"> <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span></button>
  34. <h4 id="date"></h4>
  35. <button id="addDate"> <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span></button>
  36. <div>
  37. </div>
  38. </div>
  39. </div>
  40. @endsection
  41.  
  42. @section('scripts')
  43. <script type="text/javascript">
  44. $(document).ready(function() {
  45. $('#addDate').click(function(){
  46. console.log('Add Date');
  47. });
  48. $('#subDate').click(function(){
  49. console.log('Sub Date');
  50. });
  51. console.log('adjh');
  52. });
  53. </script>
  54.  
  55. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement