Inital Commit
This commit is contained in:
@@ -0,0 +1,58 @@
|
||||
|
||||
@section('header')
|
||||
<title>License & Certificates - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.niwida.partials.headerincludes')
|
||||
@include('client.niwida.nav')
|
||||
|
||||
|
||||
|
||||
<div class="pt-breadcrumb">
|
||||
<div class="pt-bg-overley" style="background-image: url('../assets/images/niwida/liscence-and-permit.jpg');"></div>
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-sm-12">
|
||||
<nav aria-label="breadcrumb">
|
||||
<div class="pt-breadcrumb-title">
|
||||
<h1>License & Certificates</h1>
|
||||
</div>
|
||||
<div class="pt-breadcrumb-container">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="#"><i class="fas fa-home mr-2"></i>Home</a></li>
|
||||
<li class="breadcrumb-item">About us</li>
|
||||
<li class="breadcrumb-item active">License & Permit</li>
|
||||
</ol>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section class="our-story">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
@php
|
||||
$certificates = MPCMS::getCertificates();
|
||||
@endphp
|
||||
@foreach ($certificates as $certificate)
|
||||
<div class="col-md-4 col-lg-4 col-12">
|
||||
<div class="img-lcs-prmt">
|
||||
|
||||
<img src="{{$certificate->photo}}" alt="License & Permit" class="img-pp_up">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endforeach
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
@include('client.niwida.partials.footer')
|
1
resources/views/client/niwida/inside/about.blade.php
Normal file
1
resources/views/client/niwida/inside/about.blade.php
Normal file
@@ -0,0 +1 @@
|
||||
<p>this is introduction page</p>
|
76
resources/views/client/niwida/inside/article.blade.php
Normal file
76
resources/views/client/niwida/inside/article.blade.php
Normal file
@@ -0,0 +1,76 @@
|
||||
@section('header')
|
||||
<title>{{$article->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.niwida.partials.headerincludes')
|
||||
@include('client.niwida.nav')
|
||||
|
||||
{{-- <section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<p class="medium-text text-light">{{$article->title}}</p>
|
||||
</div>
|
||||
</section> --}}
|
||||
@include('client.niwida.partials.breadcrumb', ['title'=>'Company Profile','submenus'=>$article->title])
|
||||
|
||||
@if($article->alias!='organizational-setup' && $article->alias!='iso-certificate')
|
||||
<section class="chairman pt-5 custom-background">
|
||||
<div class="container">
|
||||
|
||||
<!-- <p class="custom-text fs-5 text-uppercase" uk-scrollspy="cls: uk-animation-slide-left-medium; repeat: true">{{$article->title}} </p> -->
|
||||
|
||||
<div class="row g-5">
|
||||
|
||||
<div class="col-md-12">
|
||||
{!!processForShortcode($article->text)!!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endif
|
||||
@php
|
||||
|
||||
$iso_certificate=DB::table('companyarticles')->where('alias',$article->alias)->
|
||||
where('status',1)->get();
|
||||
@endphp
|
||||
@if($article->alias=='iso-certificate')
|
||||
<section class="chairman pt-5 custom-background">
|
||||
<div class="container">
|
||||
|
||||
{{-- <p class="custom-text fs-5 text-uppercase" uk-scrollspy="cls: uk-animation-slide-left-medium; repeat: true">{{$article->title}} </p> --}}
|
||||
|
||||
<div class="row ">
|
||||
<div class="col-md-4"></div>
|
||||
@foreach($iso_certificate as $item)
|
||||
|
||||
@if($article->cover_photo)
|
||||
<div class="col-md-4">
|
||||
<img src=" {{ asset($item->cover_photo)}}" class="img-fluid pt-img-15" style="object-fit:contain; max-height:600px; max-width:600px; height:100%;width:100%;">
|
||||
</div>
|
||||
<div class="col-md-4"></div>
|
||||
@endif
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endif
|
||||
|
||||
@if($article->alias=='organizational-setup')
|
||||
<section>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
<div class=col-md-4></div>
|
||||
<div class=col-md-4> @if($article->cover_photo)
|
||||
|
||||
<img src=" {{ asset($article->cover_photo)}}" class="img-fluid pt-img-15" style="object-fit:contain; max-height:700px; max-width:800px; height:100%;width:100%;">
|
||||
@endif
|
||||
</div>
|
||||
<div class=col-md-4></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
@endif
|
||||
|
||||
|
||||
|
||||
@include('client.niwida.partials.footer')
|
58
resources/views/client/niwida/inside/certificates.blade.php
Normal file
58
resources/views/client/niwida/inside/certificates.blade.php
Normal file
@@ -0,0 +1,58 @@
|
||||
|
||||
@section('header')
|
||||
<title>License & Certificates - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.niwida.partials.headerincludes')
|
||||
@include('client.niwida.nav')
|
||||
|
||||
|
||||
|
||||
<div class="pt-breadcrumb">
|
||||
<div class="pt-bg-overley" style="background-image: url('../assets/images/niwida/liscence-and-permit.jpg');"></div>
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-sm-12">
|
||||
<nav aria-label="breadcrumb">
|
||||
<div class="pt-breadcrumb-title">
|
||||
<h1>License & Certificates</h1>
|
||||
</div>
|
||||
<div class="pt-breadcrumb-container">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="#"><i class="fas fa-home mr-2"></i>Home</a></li>
|
||||
<li class="breadcrumb-item">About us</li>
|
||||
<li class="breadcrumb-item active">License & Permit</li>
|
||||
</ol>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section class="our-story">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
@php
|
||||
$certificates = MPCMS::getCertificates();
|
||||
@endphp
|
||||
@foreach ($certificates as $certificate)
|
||||
<div class="col-md-4 col-lg-4 col-12">
|
||||
<div class="img-lcs-prmt">
|
||||
|
||||
<img src="{{ asset($certificate->photo)}}" alt="License & Permit" class="img-pp_up">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endforeach
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</section>
|
||||
@include('client.niwida.partials.footer')
|
87
resources/views/client/niwida/inside/contact.blade.php
Normal file
87
resources/views/client/niwida/inside/contact.blade.php
Normal file
@@ -0,0 +1,87 @@
|
||||
|
||||
@section('header')
|
||||
<title>Contact - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.niwida.partials.headerincludes')
|
||||
@include('client.niwida.nav')
|
||||
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:0; "></div>
|
||||
<p class="text-light">Home / Contact</p>
|
||||
<p class="medium-text text-light">Contact Us</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section-padding ">
|
||||
<div class="container">
|
||||
<div class="row g-5 d-flex align-items-center">
|
||||
|
||||
<div class="col-md-6 ">
|
||||
<p class="custom-text fs-5 text-uppercase">
|
||||
Find us in these locations and contact us directly for any additional queries.</p>
|
||||
|
||||
<div class="vstack gap-4 get-in-touch">
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-location-arrow"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Location</p>
|
||||
<p class="m-0 mt-2 fw-bold">{{$contact->address}}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-envelope"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Mail</p>
|
||||
<p class="m-0 mt-2 fw-bold"><a class="text-dark" href="mailto:{{$contact->email1}}">{{$contact->email1}}</a> </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-phone"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Phone</p>
|
||||
<p class="m-0 mt-2 fw-bold"><a class="text-dark" href="tel:{{$contact->tel}}">{{$contact->tel}}</a> </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-phone"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Secondary Phone</p>
|
||||
<p class="m-0 mt-2 fw-bold"><a class="text-dark" href="tel:{{$contact->fax}}">{{$contact->fax}}</a> </p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row g-3 d-flex align-items-center">
|
||||
<div class="col-2">
|
||||
<i class="fa-solid fa-phone"></i>
|
||||
</div>
|
||||
<div class="col-10">
|
||||
<p class="m-0">Hand Phone (HP)</p>
|
||||
<p class="m-0 mt-2 fw-bold"><a class="text-dark" href="tel:{{$contact->hp1}}">{{$contact->hp2}}</a> </p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<p class="custom-text fs-5 text-uppercase">Contact Form</p>
|
||||
{{MPCMS::showForm($contact->forms_id)}}
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
{{-- {!!$contact->google_map!!} --}}
|
||||
|
||||
@include('client.niwida.partials.footer')
|
182
resources/views/client/niwida/inside/cruiserecruitment.blade.php
Normal file
182
resources/views/client/niwida/inside/cruiserecruitment.blade.php
Normal file
@@ -0,0 +1,182 @@
|
||||
@section('header')
|
||||
<title>{{ $cruiserecruiment->title }} - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@include('client.niwida.partials.headerincludes')
|
||||
@include('client.niwida.nav')
|
||||
|
||||
{{-- <section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<p class="medium-text text-light">{{$article->title}}</p>
|
||||
</div>
|
||||
</section> --}}
|
||||
@include('client.niwida.partials.breadcrumb', [
|
||||
'title' => 'Cruise Recruitment',
|
||||
'submenus' => $cruiserecruiment->title,
|
||||
])
|
||||
|
||||
<section class="chairman pt-5 custom-background">
|
||||
<div class="container">
|
||||
|
||||
{{-- <p class="custom-text fs-5 text-uppercase" uk-scrollspy="cls: uk-animation-slide-left-medium; repeat: true">{{$cruiserecruiment->title}} </p> --}}
|
||||
|
||||
@if ($cruiserecruiment->alias == 'about-us')
|
||||
<div class="row g-5">
|
||||
|
||||
<div class="col-md-4">
|
||||
{!! processForShortcode($cruiserecruiment->text) !!}
|
||||
|
||||
|
||||
</div>
|
||||
@if ($cruiserecruiment->cover_photo)
|
||||
<div class="col-md-8">
|
||||
<img src= " {{ asset($cruiserecruiment->cover_photo) }}" class="img-fluid pt-img-15"
|
||||
style="object-fit:contain">
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
||||
</div>
|
||||
@endif
|
||||
|
||||
|
||||
@if ($cruiserecruiment->alias == 'contact-us')
|
||||
<p>this is cruise recuise contact</p>
|
||||
|
||||
@endif
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@if ($cruiserecruiment->alias != 'contact-us' && $cruiserecruiment->alias != 'about-us' && $cruiserecruiment->alias != 'hot-jobs')
|
||||
<section class="row">
|
||||
@php
|
||||
|
||||
$data=DB::table('otherarticles')->where('alias',$cruiserecruiment->alias)
|
||||
->where('status',1)->get();
|
||||
|
||||
@endphp
|
||||
{{-- @foreach ($cruiserecruiment->ref as $cruiserecruiment) --}}
|
||||
@foreach($data as $item)
|
||||
<div class="col-md-4">
|
||||
<div class="container">
|
||||
|
||||
<div class="card">
|
||||
<img class="card-img-top" src="{{ asset($item->cover_photo) }}"
|
||||
alt="Card image cap">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">{!! processForShortcode($item->title) !!}</h5>
|
||||
<p class="card-text">{!! processForShortcode($item->text) !!}</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
{{-- <div class="col-md-4">
|
||||
<div class="container">
|
||||
|
||||
<div class="card">
|
||||
<img class="card-img-top" src="{{ asset($cruiserecruiment->cover_photo) }}"
|
||||
alt="Card image cap">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">{!! processForShortcode($cruiserecruiment->title) !!}</h5>
|
||||
<p class="card-text">{!! processForShortcode($cruiserecruiment->text) !!}</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="container">
|
||||
|
||||
<div class="card">
|
||||
<img class="card-img-top" src="{{ asset($cruiserecruiment->cover_photo) }}"
|
||||
alt="Card image cap">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">{!! processForShortcode($cruiserecruiment->title) !!}</h5>
|
||||
<p class="card-text">{!! processForShortcode($cruiserecruiment->text) !!}</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div> --}}
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
@endif
|
||||
@if ($cruiserecruiment->alias == 'hot-jobs')
|
||||
|
||||
<section class="row">
|
||||
@php
|
||||
|
||||
$data=DB::table('otherarticles')->where('alias',$cruiserecruiment->alias)
|
||||
->where('status',1)->get();
|
||||
// dd($data);
|
||||
|
||||
@endphp
|
||||
{{-- @foreach ($cruiserecruiment->ref as $cruiserecruiment) --}}
|
||||
@foreach($data as $item)
|
||||
<div class="col-md-12">
|
||||
<div class="container">
|
||||
|
||||
<div class="card">
|
||||
|
||||
<div class="card-body text-dark">
|
||||
<h5 class="card-title">{!! processForShortcode($item->title) !!}</h5>
|
||||
<p class="card-text">{!!processForShortcode($item->text) !!}</p>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
{{-- <div class="col-md-4">
|
||||
<div class="container">
|
||||
|
||||
<div class="card">
|
||||
<img class="card-img-top" src="{{ asset($cruiserecruiment->cover_photo) }}"
|
||||
alt="Card image cap">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">{!! processForShortcode($cruiserecruiment->title) !!}</h5>
|
||||
<p class="card-text">{!! processForShortcode($cruiserecruiment->text) !!}</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="container">
|
||||
|
||||
<div class="card">
|
||||
<img class="card-img-top" src="{{ asset($cruiserecruiment->cover_photo) }}"
|
||||
alt="Card image cap">
|
||||
<div class="card-body">
|
||||
<h5 class="card-title">{!! processForShortcode($cruiserecruiment->title) !!}</h5>
|
||||
<p class="card-text">{!! processForShortcode($cruiserecruiment->text) !!}</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div> --}}
|
||||
|
||||
|
||||
|
||||
|
||||
</section>
|
||||
@endif
|
||||
</div>
|
||||
</section>
|
||||
@include('client.niwida.partials.footer')
|
@@ -0,0 +1,37 @@
|
||||
|
||||
@section('header')
|
||||
<title>Demand Countries - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.niwida.partials.headerincludes')
|
||||
@include('client.niwida.nav')
|
||||
|
||||
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:2;"></div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="clients section-padding custom-background position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4 custom-text">List of countries having Job Demands</p>
|
||||
<div class="vstack gap-5 pt-3">
|
||||
<div class="row g-5 text-center">
|
||||
@foreach(MPCMS::getDemandCountries() as $country)
|
||||
<div class="col-md-4">
|
||||
<a href="country/{{$country->alias}}">
|
||||
<img class="img-fluid custom-img-job" src="{{$country->image_thumb}}" alt="">
|
||||
</a>
|
||||
<p class="custom-text2 mt-3">{{$country->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@include('client.niwida.partials.footer')
|
30
resources/views/client/niwida/inside/demand_single.blade.php
Normal file
30
resources/views/client/niwida/inside/demand_single.blade.php
Normal file
@@ -0,0 +1,30 @@
|
||||
@extends('client.niwida.partials.layout')
|
||||
@section('header')
|
||||
<title>{{$demand->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container">
|
||||
<p class="medium-text text-light">{{$demand->title}}</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="pt-5 custom-background">
|
||||
<div class="container">
|
||||
<div class="row g-5 pb-5">
|
||||
<div class="col-9">
|
||||
<p class="fs-4 fw-bold text-center green-bg text-light p-2">{{$demand->title}}</p>
|
||||
|
||||
<img class="img-fluid rounded" src="{{site_url($demand->thumb)}}" alt="">
|
||||
{!!$demand->text!!}
|
||||
<p class="medium-text">Apply Now</p>
|
||||
{{MPCMS::showForm('apply-now')}}
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@endsection
|
61
resources/views/client/niwida/inside/demands.blade.php
Normal file
61
resources/views/client/niwida/inside/demands.blade.php
Normal file
@@ -0,0 +1,61 @@
|
||||
|
||||
@section('header')
|
||||
<title>Current Job Demands - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.niwida.partials.headerincludes')
|
||||
@include('client.niwida.nav')
|
||||
|
||||
|
||||
|
||||
|
||||
{{-- <section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<div class="square" style="left:0%; z-index:2;">
|
||||
<h1>Current Job Demands</h1></div>
|
||||
</div>
|
||||
</section> --}}
|
||||
<div class="col-sm-12">
|
||||
<div class="pt-breadcrumb">
|
||||
<div class="pt-bg-overley" style="background-image: url('assets/images/niwida/get-in-touch.jpg');"></div>
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-sm-12">
|
||||
<nav aria-label="breadcrumb">
|
||||
<div class="pt-breadcrumb-title">
|
||||
<h1>Job Categories</h1>
|
||||
</div>
|
||||
<div class="pt-breadcrumb-container">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href="#"><i class="fas fa-home mr-2"></i>Home</a></li>
|
||||
<li class="breadcrumb-item">Job seekers</li>
|
||||
<li class="breadcrumb-item">Job Categories</li>
|
||||
</ol>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<section class="clients1 section-padding custom-background position-relative">
|
||||
<div class="vstack gap-5" uk-scrollspy="target: > div; cls: uk-animation-slide-bottom-medium; delay: 300; repeat: true">
|
||||
<div class="container">
|
||||
<p class="fw-bold"></p>
|
||||
<div class="thumb"></div>
|
||||
<p class="fs-4 custom-text">List of current Job Demands</p>
|
||||
<div class="vstack gap-5 pt-3">
|
||||
<div class="row g-5 text-center">
|
||||
@foreach(MPCMS::getPaperDemands() as $JobDemand)
|
||||
<div class="col-md-3">
|
||||
<a href="{{site_url($JobDemand->thumb)}}" data-fancybox="gallery1">
|
||||
<img class="img-fluid" src="{{site_url($JobDemand->thumb)}}" alt="">
|
||||
</a>
|
||||
<p class="custom-text2 mt-3">{{$JobDemand->title}}</p>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@include('client.niwida.partials.footer')
|
76
resources/views/client/niwida/inside/message.blade.php
Normal file
76
resources/views/client/niwida/inside/message.blade.php
Normal file
@@ -0,0 +1,76 @@
|
||||
@section('header')
|
||||
<title>{{$article->title}} - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include('client.niwida.partials.headerincludes')
|
||||
@include('client.niwida.nav')
|
||||
|
||||
{{-- <section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<p class="medium-text text-light">{{$article->title}}</p>
|
||||
</div>
|
||||
</section> --}}
|
||||
@include('client.niwida.partials.breadcrumb', ['title'=>'Company Profile','submenus'=>$article->title])
|
||||
|
||||
@if($article->alias!='organizational-setup' && $article->alias!='iso-certificate')
|
||||
<section class="chairman pt-5 custom-background">
|
||||
<div class="container">
|
||||
|
||||
<!-- <p class="custom-text fs-5 text-uppercase" uk-scrollspy="cls: uk-animation-slide-left-medium; repeat: true">{{$article->title}} </p> -->
|
||||
|
||||
<div class="row g-5">
|
||||
|
||||
<div class="col-md-12">
|
||||
{!!processForShortcode($article->text)!!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endif
|
||||
@php
|
||||
|
||||
$iso_certificate=DB::table('companyarticles')->where('alias',$article->alias)->
|
||||
where('status',1)->get();
|
||||
@endphp
|
||||
@if($article->alias=='iso-certificate')
|
||||
<section class="chairman pt-5 custom-background">
|
||||
<div class="container">
|
||||
|
||||
{{-- <p class="custom-text fs-5 text-uppercase" uk-scrollspy="cls: uk-animation-slide-left-medium; repeat: true">{{$article->title}} </p> --}}
|
||||
|
||||
<div class="row ">
|
||||
<div class="col-md-4"></div>
|
||||
@foreach($iso_certificate as $item)
|
||||
|
||||
@if($article->cover_photo)
|
||||
<div class="col-md-4">
|
||||
<img src=" {{ asset($item->cover_photo)}}" class="img-fluid pt-img-15" style="object-fit:contain; max-height:600px; max-width:600px; height:100%;width:100%;">
|
||||
</div>
|
||||
<div class="col-md-4"></div>
|
||||
@endif
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endif
|
||||
|
||||
@if($article->alias=='organizational-setup')
|
||||
<section>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
<div class=col-md-4></div>
|
||||
<div class=col-md-4> @if($article->cover_photo)
|
||||
|
||||
<img src=" {{ asset($article->cover_photo)}}" class="img-fluid pt-img-15" style="object-fit:contain; max-height:700px; max-width:800px; height:100%;width:100%;">
|
||||
@endif
|
||||
</div>
|
||||
<div class=col-md-4></div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
@endif
|
||||
|
||||
|
||||
|
||||
@include('client.niwida.partials.footer')
|
@@ -0,0 +1,117 @@
|
||||
@section('header')
|
||||
<title>{{ $recruitmentarticle->title }} - {{ env('APP_NAME') }}</title>
|
||||
@endsection
|
||||
@include('client.niwida.partials.headerincludes')
|
||||
@include('client.niwida.nav')
|
||||
@include('client.niwida.partials.breadcrumb', [
|
||||
'title' => 'Recruitment Procedure',
|
||||
'submenus' => $recruitmentarticle->title,
|
||||
])
|
||||
|
||||
|
||||
|
||||
{{-- <section class="banner-background d-flex align-items-center text-center">
|
||||
<div class="container position-relative" uk-scrollspy="cls: uk-animation-slide-top-medium; repeat: true">
|
||||
<p class="medium-text text-light">{{$recruitmentarticle->title}}</p>
|
||||
</div>
|
||||
</section> --}}
|
||||
|
||||
|
||||
@php
|
||||
$data = DB::table('recruitmentarticles')
|
||||
->where('alias', $recruitmentarticle->alias)
|
||||
->where('status', 1)
|
||||
->get();
|
||||
|
||||
@endphp
|
||||
|
||||
@if ($recruitmentarticle->alias == 'processing_procedure_and_time_frame')
|
||||
<br>
|
||||
<br>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
|
||||
{{-- @foreach ($recruitmentarticle as $item) --}}
|
||||
|
||||
@foreach ($data as $item)
|
||||
<div class="col-md-6">
|
||||
|
||||
<div>
|
||||
|
||||
<img src="{{ asset($item->cover_photo) }}" alt="processing procedure and time frame"
|
||||
style="object-fit:fill; max-height:600px; max-width:600px; height:100%;width:100%;">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if ($recruitmentarticle->alias == 'required_documents')
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
@foreach ($data as $item)
|
||||
<div class="col-md-4 col-lg-4 col-12">
|
||||
<div class="pt-service-box pt-service-box-2 mb-30">
|
||||
<div class="pt-service-banner">
|
||||
<img src="{{ asset($item->cover_photo) }}" alt="required-documents" style="object-fit:fill; max-height:250px; max-width:550px; height:100%;width:100%;">
|
||||
</div>
|
||||
<div class="pt-service-box-info min-hgt-280">
|
||||
<h5 class="pt-service-title text-primary">{{$item->title}}</a>
|
||||
{{-- <p>this is test data</p> --}}
|
||||
<p>{!!$item->text!!}</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
|
||||
</div>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
</div>
|
||||
@endif
|
||||
@if ($recruitmentarticle->alias == 'selection_procedure')
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<div class="row">
|
||||
@foreach ($data as $item)
|
||||
<div class="col-md-6 col-lg-6 col-12">
|
||||
<div class="mt-30 mb-30 hvr-s3c_pp">
|
||||
<div class="img-nwdprt_sec">
|
||||
<img src="{{ asset($item->cover_photo) }}" alt="selection-procedure" style="object-fit:fill; max-height:250px; max-width:550px; height:100%;width:100%;">
|
||||
</div>
|
||||
<div class="bx-shw-bg rgt-s3c_prt-inr">
|
||||
<h4>{{$item->title}}</h4>
|
||||
<p>{!!$item->text!!}</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
@include('client.niwida.partials.footer')
|
59
resources/views/client/niwida/inside/teams.blade.php
Normal file
59
resources/views/client/niwida/inside/teams.blade.php
Normal file
@@ -0,0 +1,59 @@
|
||||
|
||||
|
||||
@section('header')
|
||||
<title>Our Team - {{env("APP_NAME")}}</title>
|
||||
@endsection
|
||||
@include ('client.niwida.partials.headerincludes')
|
||||
@include('client.niwida.nav')
|
||||
|
||||
|
||||
|
||||
<div class="pt-breadcrumb">
|
||||
<div class="pt-bg-overley" style="background-image: url('<?php echo base_url();?>assets/images/niwida/header-board-of-director.jpg');"></div>
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-sm-12">
|
||||
<nav aria-label="breadcrumb">
|
||||
<div class="pt-breadcrumb-title">
|
||||
<h1>Board of Director</h1>
|
||||
</div>
|
||||
<div class="pt-breadcrumb-container">
|
||||
<ol class="breadcrumb">
|
||||
<li class="breadcrumb-item"><a href=""><i class="fas fa-home mr-2"></i>Home</a></li>
|
||||
<li class="breadcrumb-item">About us</li>
|
||||
<li class="breadcrumb-item active">Board of Director</li>
|
||||
</ol>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- CONTENT START -->
|
||||
<section>
|
||||
<div class="container mt-5 mb-5">
|
||||
<div class="row all-team-layer">
|
||||
@foreach (MPCMS::getTeams() as $Team)
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<div class="team-card-shadow">
|
||||
<figure class="team-card-shadow-portrait">
|
||||
<img src="{{ site_url($Team->thumb) }}" alt="" height="300px">
|
||||
</figure>
|
||||
<div class="team-card-caption">
|
||||
<h3>{{ $Team->title }}</h3>
|
||||
<p>{{ $Team->designation }}</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- CONTENT END -->
|
||||
|
||||
|
||||
|
||||
|
||||
@include('client.niwida.partials.footer')
|
48
resources/views/client/niwida/inside/testimonial.blade.php
Normal file
48
resources/views/client/niwida/inside/testimonial.blade.php
Normal file
@@ -0,0 +1,48 @@
|
||||
@include('client.niwida.partials.headerincludes')
|
||||
@include('client.niwida.nav')
|
||||
<section class="testimonial tsti-clr">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-xl-12">
|
||||
<div class="pt-section-title-box text-center">
|
||||
<span class="pt-section-sub-title" style="color:#fff;">Testimonial</span>
|
||||
<h5 class="pt-section-title text-white">Hear from our clients</h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12">
|
||||
<div class="pt-testimonial pt-testimonial-1">
|
||||
<div class="owl-carousel owl-loaded owl-drag" data-dots="true" data-nav="false" data-desk_num="2" data-lap_num="2" data-tab_num="2" data-mob_num="1" data-mob_sm="1" data-autoplay="true" data-loop="true" data-margin="30">
|
||||
@php
|
||||
$testimonials = MPCMS::getarticle('testimonials');
|
||||
@endphp
|
||||
@foreach($testimonials->children as $testimonial)
|
||||
<div class="pt-testmonial-style-1">
|
||||
<div class="pt-testmonial-media">
|
||||
<i class="fa fa-quote-right" aria-hidden="true"></i>
|
||||
<img src="{{$testimonial->cover_photo}}" alt="servicebox">
|
||||
</div>
|
||||
<div class="pt-testmonial-info">
|
||||
<h5 class="pt-testmonial-title">{{$testimonial->title}}</h5>
|
||||
<span>Manager</span>
|
||||
<div class="pt-testimonial-star">
|
||||
<i class="fa fa-star"></i>
|
||||
<i class="fa fa-star"></i>
|
||||
<i class="fa fa-star"></i>
|
||||
<i class="fa fa-star"></i>
|
||||
<i class="fa fa-star"></i>
|
||||
</div>
|
||||
</div>
|
||||
<p class="pt-service-description">{!! substr($testimonial->text, 0, 1000)!!}</p>
|
||||
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section><br>
|
||||
@include('client.niwida.partials.footer')
|
Reference in New Issue
Block a user