@extends('layouts.admin')
@section('styles')
@endsection
@section('content')
@if ($message = Session::get('success'))
@endif
No |
Nombre |
Email |
Tel Casa |
Tel Oficina |
Tel Celular |
|
@foreach ($doctores as $doctore)
{{ $doctore->id }} |
{{ $doctore->nombre }} |
{{ $doctore->email }} |
{{ $doctore->tel_casa }} |
{{ $doctore->tel_oficina }} |
{{ $doctore->tel_celular }} |
@can('doctor_show')
@endcan
@can('doctor_update')
@endcan
@can('doctor_delete')
@endcan
|
@endforeach
@endsection
@section('scripts')
@endsection