@extends('layouts.site') @section('pageTitle',__('site.my-departments')) @section('innerTitle',__('site.my-departments')) @section('breadcrumb') @endsection @section('content')
@foreach($departments as $department)
@if(!empty($department->picture) && file_exists($department->picture)) @endif
{{ $department->name }}

{{ limitLength($department->description,200) }}

@lang('site.login')
@endforeach
{!! $departments->appends(['search' => Request::get('search'),'category'=>Request::get('category')])->render() !!}
@endsection