<div class="clearfix"></div>
                                </div>
                            </a>
                        </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>
 public function alertIndex($petId)
 {
     $pet = Pet::find($petId);
     $alerts = Alert::getAlertsByPetId($petId)->paginate(10);
     return view('alert.index', compact('pet', 'alerts'));
 }
 public function indexPetsByClient($id)
 {
     $client = Client::find($id);
     $pets = Pet::where('client_id', '=', $id)->paginate(10);
     return view('pet.index', compact('client', 'pets'));
 }
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id)
 {
     //Eliminate first his pet
     $clientPets = Pet::getPetByClientId($id);
     foreach ($clientPets as $clientPet) {
         $clientPet->delete();
     }
     $client = Client::find($id);
     $client->delete();
     Session::flash('message', 'Cliente eliminado correctamente');
     return Redirect::to('/client');
 }
Exemple #5
0
 public static function getPetByClientId($id)
 {
     return Pet::where('client_id', '=', $id)->get();
 }
 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);
 }