Hi All
I want to display the name of the record in breadcrumb when i am editing a record.
Or we can also say i want to pass the name of record to view.
Ex:- My Breadcrumb looks like Home>>Projects>>EditProjects
But i want when i edit a particular record it should display Edit"ProjectName".
This is how i am creating the breadcrumbs
<div id="breadcrumb">
<a href="<?php echo ADMIN_SITE_URL.'projects'; ?>">Dashboard</a>
<span class="pipe"> <?php echo '››'; ?></span>
<a href="<?php echo ADMIN_SITE_URL.str_replace(' ','',strtolower($subject));?>"><?php if(strtolower($subject) != 'record'): echo $subject; else: echo ' '; endif; ?> </a>
<span class="pipe"> <?php echo '››'; ?></span>Edit <?php echo $subject;?>
</div>