@extends('layouts.default')
@push('title', get_phrase('Bootcamps'))
@push('meta')@endpush
@push('css')@endpush
@section('content')
@foreach($articles as $index => $article)
@php
$devided_val = (count($articles) / 2) - 1;
if($index > $devided_val){
continue;
}
@endphp
@endforeach
@foreach($articles as $index => $article)
@php
$devided_val = (count($articles) / 2) - 1;
if($index <= $devided_val){
continue;
}
@endphp
@endforeach
{{$articles->links()}}
@if ($articles->count() == 0)
@include('frontend.default.empty')
@endif
{{-- --}}
@endsection
@push('js')@endpush