コード例 #1
0
                        </div>
                    </div>
                    <div class="modal fade" id="alertType{{$alert->id}}" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
                        <div class="modal-dialog" role="document">
                            <div class="modal-content">
                                <div class="modal-header">
                                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
                                    <h4 class="modal-title" id="myModalLabel">{{$alert->title}}</h4>
                                </div>
                                <div class="modal-body text-justify" id="alertTypeBody{{$alert->id}}">
                                    @foreach($alertsFound as $alertFound)
                                        <?php 
$pet = \Veterinaria\Pet::find($alertFound->pets_id);
$breed = \Veterinaria\Breed::find($pet->breed_id);
$client = \Veterinaria\Client::find($pet->client_id);
$specie = \Veterinaria\Species::find($breed->species_id);
$age = \Veterinaria\Http\Controllers\UtilsController::calculateAge($pet->birth_date);
?>
                                        <div>
                                            <label>Nombre Cliente:</label>
                                            &nbsp;{{$client->name}}
                                            &nbsp;{{$client->lastname}}
                                        </div>
                                        <div>
                                            <label>Teléfono:</label>
                                            &nbsp;{{$client->phone}}
                                            &nbsp;&nbsp;{{$client->cellphone}}
                                        </div>
                                        <div><label>Email:</label>&nbsp;{{$client->email}}</div>
                                        <div><label>Nombre Paciente:</label>&nbsp;{{$pet->name}}</div>
                                        <div><label>Especie:</label>&nbsp;{{$specie->species}}</div>
コード例 #2
0
 public function pdf($id)
 {
     $atention = Atention::find($id);
     $pet = Pet::find($atention->pet_id);
     $age = UtilsController::calculateAge($pet->birth_date);
     $breed = Breed::find($pet->breed_id);
     $specie = Species::find($breed->species_id);
     $client = Client::find($pet->client_id);
     $view = View::make('atention.pdf', compact('atention', 'pet', 'age', 'breed', 'specie', 'client'))->render();
     $pdf = App::make('dompdf.wrapper');
     $pdf->loadHTML($view);
     $nameFile = "Receta-" . $pet->name . "-" . $atention->created_at->format('Y-m-d') . ".pdf";
     return $pdf->download($nameFile);
 }
コード例 #3
0
<!-- Modal -->
<?php 
$petBreed = \Veterinaria\Breed::find($pet->breed_id);
$breedName = $petBreed->name;
$specieId = $petBreed->species_id;
$specieName = \Veterinaria\Species::find($specieId)->species;
?>
<div class="modal fade" id="information{{$pet->id}}" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
    <div class="modal-dialog" role="document">
        <div class="modal-content">
            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
                <h4 class="modal-title" id="myModalLabel">Información Mascota {{ucfirst ( strtolower ( $pet->name ))}}</h4>
            </div>
            <div class="modal-body text-justify">
                <div>{!!Form::label('Nombre:')!!}&nbsp;{{$pet->name}}</div>
                <div>
                    {!!Form::label('Sexo:')!!}&nbsp;
                    @if ($pet->sex == 1)
                        MACHO
                    @else
                        HEMBRA
                    @endif
                </div>
                <div>{!!Form::label('Fecha Nacimiento:')!!}&nbsp;{{$pet->birth_date}}</div>
                <div>{!!Form::label('Edad:')!!}&nbsp;{{$date}}</div>
                <div>{!!Form::label('Especie:')!!}&nbsp;{{$specieName}}</div>
                <div>{!!Form::label('Raza:')!!}&nbsp;{{$breedName}}</div>
                <div>{!!Form::label('Número de Ficha:')!!}&nbsp;{{$pet->record_number}}</div>
            </div>
            <div class="modal-footer">
コード例 #4
0
 /**
  * Update the specified resource in storage.
  *
  * @param  \Illuminate\Http\Request  $request
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function update(SpeciesRequest $request, $id)
 {
     //
     $species = Species::find($id);
     $species->fill($request->all());
     $species['species'] = strtoupper($species['species']);
     $species->save();
     Session::flash('message', 'Especie editada correctamente');
     return Redirect::to('/species');
 }