/home/mip/www/img/credit/datatables/page-company-kpi.blade.php.tar
home/mip/mip/resources/views/website/page-company-kpi.blade.php000066400000003543151520617700020612 0ustar00@extends('website.layouts-inner')
@section('page-body')

<div class="inner-header">
    <img src="{{ asset('website/images/img-inner-header-company-profile.jpg') }}" class="img-responsive" />
</div>

<div class="container">
    <div class="row">
        <div class="col-sm-4">
            @include('website.includes.sidebar')
        </div>

        <div class="col-sm-8">
            <div id="company-kpi">
                <h3>COMPANY'S KPI</h3>
                <p>
                    With the company’s goal to maintain an excellent service to the entire Filipino nation, MIP International Manpower Services, Inc. has consistently achieved its target every single year. The company was able to send more overseas Filipino workers to its partner countries for the past 5 years. Last year’s increase in deployment was noted to be the highest increase that the company has made for the past five (5) years. And as we continue to grow, the company wishes to seize more opportunities to offer occupations to the Filipino nation.
                </p>
            </div>
        </div>
    </div>
</div>

@section('facilitiesstyle')
<link href="https://cdnjs.cloudflare.com/ajax/libs/imageviewer/1.0.0/viewer.min.css" rel="stylesheet">
@stop

@section('facilitiesscript')
<script src="https://cdnjs.cloudflare.com/ajax/libs/imageviewer/1.0.0/viewer.min.js"></script>
<script>
    var $image = $('.img-wrapper');
    $image.viewer({
        inline: false,
        toolbar: false,
        navbar: false,
        movable: false,
        zoomable: true,
        scalable: false,
        rotatable: false,
        title: false,
        viewed: function() {
            $image.viewer('zoomTo', 0.15);
        }
    });
    // Get the Viewer.js instance after initialized
    var viewer = $image.data('viewer');
    // View a list of images
    $('.img-wrapper').viewer();

</script>
@stop


@stop