2024-07-16 15:16:41 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
SPDX-FileCopyrightText: © 2024 Millions Missing FRANCE <info@millionsmissing.fr>
|
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
|
|
|
@extends('layouts.app')
|
|
|
|
|
2024-07-29 09:43:35 +00:00
|
|
|
@section('title', __('mmfcustomersgroups::customers-groups.name'))
|
2024-07-16 15:16:41 +00:00
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="container">
|
|
|
|
<div class="flexy-container">
|
|
|
|
<div class="flexy-item">
|
2024-07-29 09:43:35 +00:00
|
|
|
<span class="heading">{{ __('mmfcustomersgroups::customers-groups.name') }}</span>
|
2024-07-16 15:16:41 +00:00
|
|
|
</div>
|
|
|
|
<div class="flexy-item margin-left">
|
2024-07-29 09:43:35 +00:00
|
|
|
<a href="{{ route('groups.create') }}" class="btn btn-bordered">{{ __('mmfcustomersgroups::customers-groups.new') }}</a>
|
2024-07-16 15:16:41 +00:00
|
|
|
</div>
|
|
|
|
<div class="flexy-block"></div>
|
|
|
|
</div>
|
|
|
|
<div class="card-list margin-top">
|
|
|
|
@foreach ($groups as $group)
|
|
|
|
<a
|
|
|
|
href="{{ route('groups.update', [ 'id' => $group->id ] ) }}"
|
|
|
|
class="card no-img hover-shade"
|
|
|
|
>
|
|
|
|
<h4>{{ $group->name }}</h4>
|
|
|
|
</a>
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|