@extends('layouts.inspinia.app') @section('title', 'Agencias') @section('titulopagina', 'Administración') @section('content')

@yield('title')

Agencias

@if ($message = Session::get('success'))

{{ $message }}

@endif
@foreach ($agencias as $agencia) @endforeach
Codigo Nombre Agencia Contacto Direccion Comuna Telefono Email Estado
{{ $agencia->cod_agencia }} {{ $agencia->nom_agencia }} {{ $agencia->contacto }} {{ $agencia->direccion }} {{ $agencia->comuna }} {{ $agencia->telefono }} {{ $agencia->email }} @if ($agencia->checkdata == 1) Activo @else Desactivado @endif
@endsection @section('javascript') @endsection