Example #1
0
    }
    return View::make('user.register');
});
Route::get('tracks/(:any)', function ($key) {
    $track = Track::where('urlkey', '=', $key)->take(1)->get();
    if (count($track) > 0) {
        return View::make('tracks.view')->with('track', $track);
    }
    return Response::error('404');
});
Route::get('/', function () {
    $track = new Track(array('admin' => 1, 'status' => 1, 'title' => 'Little Dragon - Twice (LSB Bootleg)', 'track_artist' => 1, 'urlkey' => 'djdjd^#*BXCB@!*#@&(SHS', 'result_purchase_url' => 'http://www.little-dragon.se', 'result_download_url' => 'http://www.little-dragon.se', 'player_download_url' => 'http://www.little-dragon.se'));
    //$track->save();
    $user = new User(array('username' => 'TheHydroImpulse', 'email' => '*****@*****.**', 'password' => 'password', 'salt' => 'd483jddj', 'banned' => false, 'activated' => true));
    //$user->save();
    $tracks = Track::all();
    return View::make('tracks.index')->with('tracks', $tracks);
});
/*
|--------------------------------------------------------------------------
| Application 404 & 500 Error Handlers
|--------------------------------------------------------------------------
|
| To centralize and simplify 404 handling, Laravel uses an awesome event
| system to retrieve the response. Feel free to modify this function to
| your tastes and the needs of your application.
|
| Similarly, we use an event to handle the display of 500 level errors
| within the application. These errors are fired when there is an
| uncaught exception thrown in the application.
|
Example #2
0
<table class="table-hover">
    <tr>
        <th><b><h3>Nombre</b></h3></th>
        <th><b><h3>Album</b></h3></th>
        <th><b><h3>Artista</b></h3></th>
        <th><b><h3>Duracion</b></h3></th>
        <th><b><h3>TamaƱo</b></h3></th>
        <th></th>
    </tr>
    <?php 
$offset = isset($_GET['o']) ? $_GET['o'] : 0;
$num = Track::all(1000);
$numero_filas = Track::total();
?>
    <?php 
foreach (Track::all(10, $offset) as $track) {
    ?>
    <tr id='<?php 
    echo $track->TrackId;
    ?>
'>


      <td>
        <button  class='btn btn-default btn-sm button' type='button' onclick='modalEdit(<?php 
    echo utf8_encode($track->TrackId);
    ?>
)'><?php 
    echo $track->Name;
    ?>
</button>
Example #3
0
<table class="centered responsive-table striped">
    <tr>
        <th class="text-center">Nombre</th>
        <th class="text-center">Album</th>
        <th class="text-center">Artista</th>
        <th class="text-center">Duracion</th>
        <th class="text-center">Tama&ntilde;o</th>
        <th></th>
    </tr>
    <?php 
foreach (Track::all(10000) as $track) {
    ?>
        <tr>
            <td><a <?php 
    echo "href=panel/track.php?id='" . $track->TrackId . "'";
    ?>
 class="indigo-text text-darken-4"><?php 
    echo $track->Name;
    ?>
</a></td>
            <td><a <?php 
    echo "href=panel/album.php?id='" . $track->Album->AlbumId . "'";
    ?>
 class="teal-text text-lighten-1"><?php 
    echo $track->Album->Title;
    ?>
</a></th>
            <td><a <?php 
    echo "href=panel/artist.php?id='" . $track->Album->Artist->ArtistId . "'";
    ?>
><?php