The Blade Template Engine is part of the PHP framework Laravel. Blade allows you to use beautiful, unobtrusive syntax for writing PHP control structures and echoing data.
0
votes
3answers
79 views
Laravel blade templates, foreach variable inside URL::to?
I'm creating a basic list view of posts, and need a link to the 'edit' page.
I'm using blade, and what I have is a table, with a foreach loop, showing each post along with edit/delete buttons.
What ...
0
votes
1answer
94 views
Edit Views in Laravel 4
Being new to Laravel 4, I'd like your advice on something please.
I'm creating an edit view for the edit method of a resource controller, and was wondering how you handle getting the correct data ...
0
votes
2answers
92 views
Laravel blade templates
I'm having difficulty getting my head around laravels blade templates.
I have a master.blade and I have an index.blade, no problems there.
What I want to do is inside my index.blade I want to nest ...
0
votes
0answers
35 views
Jade -> Blade template conversion
I opened a ticket on Github -> https://github.com/bminer/node-blade/issues/170, but just in case anyone can help here:
I'm converting from Jade to Blade using ExpressJS as the base Node.js HTTP ...
1
vote
2answers
241 views
Sharing Views and Data in Laravel 4
I'm building a simple diary app at the moment using Laravel 4, and I would like to create a sidebar and header that is shared across all admin views. The header will require user data to be displayed, ...
0
votes
1answer
165 views
How do I pass a variable to the layout using Laravel' Blade templating?
In Laravel 4, my controller uses a Blade layout:
class PagesController extends BaseController {
protected $layout = 'layouts.master';
}
The master layout has outputs the variable title and then ...
0
votes
2answers
291 views
Laravel 4, view composers against @include
I noticed if I pass a second parameter to @include like this:
@include('sidebars.pages', array('categories' => Category::all()))
Then it is possible to replicate the concept of render partials ...
0
votes
1answer
119 views
Laravel 4, convert Blade syntax to PHP
I would like to know what is the equivalent of:
@include('sidebars.pages')
In plain PHP?
I tried such things as:
<?php echo view('sidebars.pages'); ?>
<?php echo ...
0
votes
1answer
111 views
Laravel 3 - Custom Script in Blade Template
I want to use pnotify in laravel. When I put the blade in the custom code my script error occurs. Below is a snippet of code
<script>
$function(){
@if($errors->has())
<ul>
...
0
votes
3answers
69 views
Laravel3: Loading a content inside a content dynamically
I have a form. When user submits the form and gets error, I show it like this:
Register Controller
return View::make('theme-admin.user_add')->with('error_msg', validation->errors->first());
...
1
vote
2answers
323 views
Laravel view, layout and variables transfer
my laravel view structure is like this:
/views/layouts/default.blade.php
containing
<html>
@yield('header')
<body>
@yield('navigation')
@yield('content')
@yield('footer')
...
0
votes
1answer
503 views
Where can I find good information/tutorials on templating in Laravel 4?
I've been looking for information or tutorials regarding how to construct nice layouts in laravel 4 and I really can't find much. Mostly people just seem to say "it changed a lot from 3". That's ...
4
votes
1answer
138 views
metor blade template throws “second landmark in same branch” exception in for loop
I have a for loop that I want to include a template view in:
table.blade:
#game
h1= table.name
-if( table.playerSitting() )
a.btn.btn-danger.stand(href="#") Stand
#table
...
0
votes
1answer
161 views
Build dynamic grid using jquery mobile and modulus
I'm try to build a dynamic grid using php and jquery mobile. I would like to know if anyone can help me to use modulus to determine if the ui-block- needs to be a-d depending on the key value of the ...
0
votes
4answers
617 views
Laravel stylesheets and javascript don't load for non-base routes
Okay--I know this is a really elementary issue, but I can't figure it out. This is a question regarding Laravel.
Basically, I have my stylesheets embedded in my default layout view. I'm currently ...
1
vote
2answers
336 views
Laravel 4: if statement in blade layout works strange
Could someone explain me why I get blank screen with printed string "@extends('layouts.default')" if I request page normally (not ajax)?
@if(!Request::ajax())
@extends('layouts.default')
...
0
votes
1answer
257 views
Truncate string in Laravel blade templates
Is there a truncate modifier for the blade templates in Laravel, pretty much like Smarty?
I know I could just write out the actual php in the template but i'm looking for something a little nicer to ...
0
votes
2answers
124 views
Laravel v3.2.13-5 blade templating doesn't work
I'm new at laravel but I found something very strange.
In my blade template I wrote:
@if( $appModule == 'someting' )
Something
@elseif($appModule == 'somethingelse')
SomethingElse
@else
...
0
votes
0answers
197 views
Netbeans associating custom extension (blade.php) to a MIME type (twig)
I need to assign a custom extension to be recognized as a twig file in netbeans ('blade.php' as 'twig' file and give me syntax highlighting and code completion appropriately). The problem with using ...
0
votes
0answers
89 views
Best way to fill a roster schedule
Fellow programmers,
I got a roster application build in PHP with the framework : Laravel. And i have the following issue:
My application has : Users, Taskdate's, and TaskdateTime. Each user can get ...
0
votes
1answer
140 views
relationship and blade in laravel
I have 3 table as mentioned below.
Table 1(user):
id username password Name Age
Table 2(tasks):
id task_name description
Table 3(logs)
id user_id task_id date hours
Table Relationships:
...
0
votes
0answers
87 views
dynamic ul list in blade html template
I have this code http://blade.eu01.aws.af.cm/js/network.js that builds a links menu into this blade file
footer
ul#footer.fullwidth.footer-i18n
li#footer_home
a(href="/")
...
0
votes
1answer
513 views
how to get the @layout functionality of laravel working?
i am new to laravel an trying to learn BLADE but there is a issue which is striking me.
i have an
index.blade.php
@layout('master')
and i also have a
master.blade.php
<!doctype html>
...
0
votes
1answer
204 views
Error when trying to access data of relation in Laravel 4
I've been using Laravel 4 for a few days now and I stumbled across something I can't seem to fix.
Using Eloquent, I've set up 2 models, where Appointment has a belongsTo relationship to Room.
After ...
0
votes
1answer
221 views
Laravel blade templating - order of markup is messed up
I'm currently working on the frontend for a project and right now I'm creating all the views. I have a template, which roughly looks like this:
<!doctype html>
<html lang="en-GB">
...
0
votes
1answer
554 views
phpStorm adding custom code completion
I was hoping to add some custom auto-completion to phpStorm for Laravel Blade views, but I couldn't find anything about it in the documentation
Specifically, I want it to append the section closing ...
7
votes
1answer
2k views
Blade templating engine syntax issues on Laravel 4
I'm currently starting a project on the beta version of Laravel 4
When i try to use the templating engine some tags work and some doesn't. e.g:
@layout('layouts.master')
@section('container')
...
0
votes
1answer
153 views
laravel blade @yeild inside js
Hi im trying to use blade to create a dynamic tracking code for my website.
this is what i have so far i tried yielding straight to the piwikTracker var but got all sorts of errors passing it as a ...
4
votes
1answer
426 views
How do I get Blade syntax highlighting in Aptana
Does anyone know how to get syntax highlighting for the Blade Templating language used by Laravel in Aptana?
I found this but can't find a repository from which I can install anything like this.
...
2
votes
1answer
147 views
Meteor + Blade: Included templates still use the context of the parent
When I include a template using include "sub.blade" the subtemplate uses the data context of the current template.
So, when I have the following:
server.js
if(Meteor.isClient){
...
0
votes
1answer
100 views
Meteor and Blade with “foreach”
Using Meteor with Handlebars I can list out items from a collection like this
Template.content.clients = ->
Clients.find({})
And in the template
<#each clients>
...
3
votes
2answers
315 views
Using Bladejs with Meteor
I recently added the node-blade smart package to my meteor and have static content displaying fine. However, I'm not able to use any template variables. Before I installed blade, the template ...