Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8773655
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T18:21:19+00:00 2026-06-13T18:21:19+00:00

I am new in MVC framework. I created an application in Laravel Framework &

  • 0

I am new in MVC framework. I created an application in Laravel Framework & it was working fine. Now after some modification when I want to view the index page the following error is shown to me-

Message:

Use of undefined constant php – assumed ‘php’

Location:

C:\wamp\www\alpha.team.com\laravel\view.php(354) : eval()’d code on
line 32

Here is my view code of index.blade.php

@layout('/layouts/layout')
         <link href='http://fonts.googleapis.com/css?family=Neucha' rel='stylesheet' type='text/css'> 
         <div id="top">
        @section('navigation')
        <!-- <li class="active"><a href="/home/view/<?php //echo Auth::user()->username; ?>"><i class="icon-user"></i>&nbsp;My Profile</a></li> -->
        <li><a href = "/dashboard"><i class="icon-book"></i>&nbsp;Dashboard</a></li>
        @parent
        @endsection
          </div>
         @section('content')
         <!-- For showing error message if any error occours-->
          <?php if(Session::get('error')): ?>
          <div class="alert alert-error">
           <button type="button" class="close" data-dismiss="alert">×</button>
           <strong>Warning!</strong> <?php echo Session::get('error'); ?>
         </div>
         <?php endif; ?>

         <!-- For showing success message.-->
             <?php if(Session::get('success')): ?>
             <div class="alert alert-success">
                <button type="button" class="close" data-dismiss="alert">×</button>
                <strong>Well done!</strong> <?php echo Session::get('success'); ?>
             </div>
             <?php endif; ?>

         <div class="field-section">
          <div class="hero-unit">
            <!-- <a id="logo" href="#"><img alt="TechIndyeah" src="/uploads/logo.png" style="vertical-align: top;"></a> -->
            <h1 style="display:inline;">Team TechIndyeah</h1>
              <ul class="teams" style="text-align:center;">  
                             @foreach($departments as $dept)
                             <?php// print_r($dept); ?>
                               <li>
                                 <a href="#<?php echo implode('_',explode(' ',$dept->name));?>"><?php echo $dept->name; ?></a>
                               </li> 
                               @endforeach
                           </ul>
          </div>
         </div> <!-- field-section div ends here-->
         <!-- <div class="container"> -->
          <div class="wrapper">

         <div class="hero-unit" id="bg-pattern"> 

          <h1 class="home-tag"> Tech-ing India<span><p>The team of enthusiastic tech fanatics</p></span></h1>
            <p class="home-ptag">We are a team of enthusiastic tech fanatics and yes we are Apple fanboys too. We have sailed out together on a small boat and we do live in what Seth Godin says, “Small is the next big”. We love technology and we love you. Our team is free, creative and always brimming with ideas.</p>
              <div class="row" style="background:none;">
                <div class="span8">
                  <h1 class="home-tag" >About Us</h1>
                  <p class="home-ptag">TechIndyeah has a team which is highly process oriented and has a sharp client-centric approach. Our mission is to help you to build your footprints in business. We are a team inspired by a vision and driven by technology. We are driven by an offbeat approach when it comes to client servicing and support. We have been serving our clients for a long time and have won accolades galore. We are a team and we believe in making our time resourceful so that our clients get the most out of us. We are a band of developers, designers and marketers who can take your business online and also combat the stiff competition from similar players in your domain.  </p>
                </div>
                <div class="span3">
                  <object type="image/svg+xml" data="/img/logo.svg">
                  <img alt="TechIndyeah" src="/img/logo.png" style="vertical-align:top;">
                </object>
                </div>
              </div>

          <div class="row">
            <div class="span4">
          <!-- <a id="logo" href="#"><img alt="TechIndyeah" src="/uploads/logo.png"></a> -->
        </div>

        <!-- <div class="span6" id="caption">
          <h3>Here We Are</h3>
        </div> -->
        </div>
              <div class="row">
                     <?php $something = $errors->all(); 
                     if(!empty($something)): ?>
                    <div class = "alert alert-error">    
                    <button type="button" class="close" data-dismiss="alert">×</button>                    
                                              @foreach ($errors->all('<p>:message</p>') as $input_error)
                                              {{ $input_error }}
                                              @endforeach 
                              </div>              
                     <?php endif; ?>                
              </div>
              <!-- For showing all employee name in the front page.. Showcasing them..-->
                   <div id="hero-unit">     
                           <script type="text/javascript">



                              //The departments are randomly comming in the page when it is first loaded..
                             (function($) {
                                     // Get the list items and hide them
                                     var items = $(".teams > li").css({opacity:0});
                                     // Shuffle them
                                     shuffle(items);
                                     // Start the fade-in queue
                                     nextItemFade(items);

                                     // Animation callback to start next fade-in
                                     function nextItemFade(items) {
                                             // Fade in the first element in the collection
                                             items.eq(0).animate({opacity:1}, 400, function() {
                                                     // Recurse, but without the first element
                                                     nextItemFade(items.slice(1));
                                             });
                                     }

                                     // Shuffles an array
                                     // Based on http://jsfromhell.com/array/shuffle
                                     function shuffle(a) {
                                             var j,              // Random position
                                                 x,              // Last item
                                                 i = a.length;   // Iterator
                                             // Loop through the array
                                             while(i) {
                                                     // Select a random position
                                                     j = (Math.random() * i) | 0;
                                                     // Get the last item in the array
                                                     x = a[--i];
                                                     // Swap the last item with the item at the selected position
                                                     a[i] = a[j];
                                                     a[j] = x;
                                             }
                                             return a;
                                     }

                                     /* Minified version
                                     function shuffle(a) {
                                             for(var j, x, i = a.length; i; j = (Math.random() * i) | 0, x = a[--i], a[i] = a[j], a[j] = x);
                                             return a;
                                     } */
                             })(jQuery);

                             $(".nav1 li").each(
                             function(intIndex) {

                             var l = Math.floor(Math.random() * $(".nav1").width());
                             var t = Math.floor(Math.random() * $(".nav1").height());

                             $(this).css("left", l);
                             $(this).css("top", t);

                             $(this).on(
                                 "click",
                                     function() {
                                         alert("l=" + l + " t=" + t);
                                     }
                                 );

                             }

                             );

                             $(".nav1 li").each(
                             function(intIndex) {

                             var l = Math.floor(Math.random() * 940);
                             var t = Math.floor(Math.random() * 500);

                             $(this).css("left", l);
                             $(this).css("top", t);

                             $(this).on(
                                 "click",
                                     function() {
                                         alert("l=" + l + " t=" + t);
                                     }
                                 );

                             }

                             );


                           </script>
                            <style type="text/css">
                            .nav1
                            {
                              position:relative;
                            }


                               .nav1 li
                               {
                                   padding: 10px;
                                   position:absolute;
                               }
                           </style>

                        </div> <!-- #hero-unit ends here--> 
                        <!-- </div>  mucarousel div ends here  -->
                 <div class="member-list">
                    <!-- <object type="image/svg+xml" data="/img/vector-tree2.svg"> -->
                    <!-- <img alt="TechIndyeah" src="/img/vector-tree2.png" style="vertical-align:top;"> -->
                  <!-- </object> -->
                 @foreach($departments as $dept)
                 <div id="<?php echo implode('_',explode(' ',$dept->name));?>" class="demo">
                  <ul class="member">
                    <?php $users = User::where('department_id','=',$dept->id)->get();
                       // $users = User::where('department_code','=',$dept->code)->get();
                     ?>
                     @foreach($users as $user)
                     <li class="new-element" style="display:inline-block;" rel="tooltip" data-placement="right" data-original-title="<?php echo $user->first_name." ".$user->last_name;?>">
                       <a href="/home/view/<?php echo $user->username;?>" rel="tooltip" data-placement="right" href="#" data-original-title="<?php echo $user->first_name." ".$user->last_name."</br> ".$user->designation;?>">
                         <img class="hover-img" src="http://graph.facebook.com/<?php echo $user->facebook_id;?>/picture?type=large">
                       </a>
                     </li>
                     @endforeach
                  </ul>
                  <a href="#top" class="scrollup">Back To Top</a>


                 </div>
                @endforeach
                   <script type="text/javascript">
                  $(window).scroll(function(){
                          if ($(this).scrollTop() > 50) {
                              $('.scrollup').fadeIn();
                          } else {
                              $('.scrollup').fadeOut();
                          }
                      });     
                   </script>
                 <script type="text/javascript">
                //all links which start with a # will have an animated scroll to the target.
                    $('a[href^="#"]').on('click.smoothscroll',function (e) {
                        e.preventDefault();
                        var target = this.hash,
                            $target = $(target);
                            // console.log($target);
                        $('html, body').stop().animate({
                            'scrollTop': $target.offset().top - 10
                        }, 900, 'swing', function () {
                            window.location.hash = target;
                        });
                    });

                   $('.new-element').children('a').tooltip();
                   </script>
                </div>
                <h1 style="text-align:center;font-family: 'Lato light', sans-serif;text-shadow: 2px 1px #848686;">TechIndyeah Software Pvt. Ltd.</h1>
              </div>
         </div>     
         @endsection
         </div>

I cannot understand. Please help.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T18:21:21+00:00Added an answer on June 13, 2026 at 6:21 pm

    Can you share some of the code that is in your view.php file?

    You’re doing something wrong on line 32 of that file, so it would be very helpful if we can see what the code actually is 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I created a new MVC application and added an Entity Framework model generated from
I'm new to Entity Framework. I've created a Multi Tier Application, in MVC, using
Basically what the title says. I created a new MVC application. I'm trying to
Using Code First Entity Framework with .NET MVC 4 I have created a new
I'm using Code-first and entity framework in my .NET MVC 3 application, I created
I am still very new to the MVC framework, but I managed to create
I am new to ASP.NET and the MVC framework as well, so I'd love
I'm rather new to MVC and as I'm getting into the whole framework more
I've been doing alot of testing with my new MVC App and now I'm
I am using bundling and minification with MVC 3 with .NET Framework 4. Created

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.