Русское сообщество разработки на PHP-фреймворке Laravel.
Ты не вошёл. Вход тут.
Страницы 1
Смысл в том что у меня есть темплайт, вот откуда там @extends и @section('content'), праблема решына, один скрипт не подцепился, спс..
Здравствуйте, помогите пожалуйста разобраться: ((Uncaught TypeError: $(...).fullCalendar is not a function)) .
---------------------------------------------------------------------------------------------------------------------------
@extends('template.layout')
@section('content')
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<link rel='stylesheet' href="{{ asset('components/fullcalendar/dist/fullcalendar.css') }}">
<link rel='stylesheet' href="{{ asset('components/fullcalendar/dist/fullcalendar.print.css') }}">
<script src="{{ asset( 'components/jquery/dist/jquery.min.js') }}"></script>
<script src="{{ asset( 'components/moment/min/moment.min.js') }}"></script>
<script src="{{ asset( 'components/fullcalendar/dist/fullcalendar.min.js') }}"></script>
<script>
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,basicWeek,basicDay'
},
defaultDate: '2015-02-12',
editable: true,
eventLimit: true,
events: [
{
title: 'All Day Event',
start: '2015-02-01'
},
{
...........
}
]
});
});
</script>
<style>
body {
margin: 40px 10px;
padding: 0;
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
font-size: 14px;
}
#calendar {
max-width: 900px;
margin: 0 auto;
}
</style>
</head>
<body>
<div id='calendar'></div>
</body>
</html>
@stop
Да, да, это очевидно, большое спасибо, я уже решил проблему, composer.json не был настроен
Здравствуйте, подскажыте пожалуста как создать такую таблицу в laravel 5...
<html>
<head>
<meta charset="utf-8">
<title>BLOCKS </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.7/css/jquery.dataTables.min.css" />
<link href="http://www.prepbootstrap()com/Content/css/single-page-admin/table.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="//cdn.datatables.net/1.10.7/js/jquery.dataTables.min.js"></script>
<body >
<style type="text/css">
body {
padding-top: 60px;
}
</style>
<link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<script type="text/javascript" charset="utf-8">
$(document).ready(function () {
$('#dt1').dataTable();
});
</script>
</head>
<body>
<div class="navbar-nav navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="http://localhost/myblog11.ro/public/"> </a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="http://localhost/myblog11.ro/public/"><i class="icon-home icon-white"></i> Home</a></li>
<li class="active"><a href="table"><i class="icon-th icon-white"></i> Tables</a></li>
<li><a href="login"><i class="icon-lock icon-white"></i> Login</a></li>
<li><a href="register"><i class="icon-user icon-white"></i> Register</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<h4><strong>Tables</strong></h4>
<table class="display" id="dt1">
<thead>
<tr>
<th>Continent</th>
<th>Tara</th>
<th>Oras</th>
<th>Locuitori</th>
<th> <a href="{{URL::route('add_table')}}" class="btn btn-default dropdown-toggle"> <span class="glyphicon glyphicon-plus" aria-hidden="true"></span> Tabel </a > </th>
</tr>
</thead>
<tbody>
@foreach($tables as $table)
<tr class="odd gradeX">
<td> {{$table->continent }} </td>
<td> {{$table->tara }} </td>
<td> {{$table->oras }} </td>
<td class="center"> {{$table->locuitori }} </td>
<td>
<a href="{{URL::to('table/stergere/'.$table->id)}} " ><span class="glyphicon glyphicon-trash" aria-hidden="true"></span></a >
<a href="{{URL::to('table/editare/'.$table->id)}} " ><span class="glyphicon glyphicon-pencil" aria-hidden="true"></span></a >
</div>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
<br>
vseo, ea uja ispravil, ppt))
<?php
class UserController extends BaseController {
public function login_get ()
{
return View::make('Autentificare.login', compact('user'));
}
public function login_post()
{
$data = Input::all();
$rules = [
'email' => 'required|email|min:6',
'password' => 'required|min:6'
];
$val = Validator::make($data, $rules, $messages);
if ($val->fails())
{
return View::make('errors.validation')->with('errors', $val->messages()->toArray());
}
$user = User::login($data);
if (!$user)
return 'Datele introduse sunt incorecte';
return Redirect::to ('http://localhost/proiect.ro/public/');
}
public function register_get()
{
return View::make('Autentificare.register', compact('user'));
}
public function register_post(){
$data = Input::all();
$rules = [
'name' => 'required',
'email' => 'required|email|min:6|unique:users',
'password' => 'required|min:6|same:repeat_password',
'repeat_password' => 'required|min:6'
];
$messages = [
'required' => 'Campul :attribute este obligatoriu.',
'email' => 'E-mailul trebuie sa fie valid',
'min' => 'Campul :attribute trebuie sa aiba minim 6 caractere'
];
$val = Validator::make($data, $rules, $messages);
if ($val->fails())
{
return Redirect::back()->with('errors', $val->messages()->toArray());
}
$user = User::register($data);
if(!$user instanceof Illuminate\Database\Eloquent\ Model)
return $user;
}
}
Добрый день! Помогите пожалуйста разобраться.
Здравствуйте я создал мой первый "проект"в laravel, дошел до авторизаций пользователей, и сейчас хочу послать емаил, постипенно всем пользователей которых я регистрирую, помогите пожалуйстa...
Страницы 1