@extends('layouts.user-no-nav') {{-- SEO, Schema & Share --}} @section('page_title', __('My companies')) @section('styles') {!! Minify::stylesheet([ '/css/pages/home.css', ])->withFullUrl() !!} @stop @section('scripts') {!! Minify::javascript([ '/js/Company.js' ])->withFullUrl() !!} @stop @section('content') @include('elements.standard-dialog',[ 'dialogName' => 'company-delete-dialog', 'title' => __('Delete company'), 'content' => __('Are you sure you want to delete this company? All associated jobs will be deleted as well.'), 'actionLabel' => __('Delete'), 'actionFunction' => 'Company.delete();', ])
@include('elements.page-navigation-header',[ 'title' => __('Companies'), 'points' => [ ['title' => __('Home'), 'route' => route('home')], ['title' => __('My companies')], ], 'button' => [ 'title' => __('New'), 'route' => route('my.companies.create') ] ]) @include('elements.message-alert',['classes'=>'alert-box pt-0 pb-4'])
@if(count($companies)) @foreach($companies as $company)
@include('elements.listings.my-company-box',['company' => $company, 'isOwner' => true])
@endforeach @else

{{__('You currently have no companies')}}.

{{__('You can always create a company in just a few seconds, by clicking the button on the top right side of this page')}}.

@endif
{{ $companies->links() }}
@endsection