89 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
	
		
			2.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Controllers;
 | |
| 
 | |
| use Inertia\Inertia;
 | |
| use App\Organization;
 | |
| use Illuminate\Support\Facades\Auth;
 | |
| use Illuminate\Support\Facades\Request;
 | |
| 
 | |
| class OrganizationsController extends Controller
 | |
| {
 | |
|     public function index()
 | |
|     {
 | |
|         return Inertia::render('Organizations/Index', [
 | |
|             'filters' => Request::all('search', 'role', 'trashed'),
 | |
|             'organizations' => Auth::user()->account->organizations()
 | |
|                 ->orderBy('name')
 | |
|                 ->filter(Request::only('search', 'role', 'trashed'))
 | |
|                 ->paginate()
 | |
|                 ->only('id', 'name', 'phone', 'city', 'deleted_at'),
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function create()
 | |
|     {
 | |
|         return Inertia::render('Organizations/Create');
 | |
|     }
 | |
| 
 | |
|     public function store()
 | |
|     {
 | |
|         return Auth::user()->account->organizations()->create(
 | |
|             Request::validate([
 | |
|                 'name' => ['required', 'max:100'],
 | |
|                 'email' => ['nullable', 'max:50', 'email'],
 | |
|                 'phone' => ['nullable', 'max:50'],
 | |
|                 'address' => ['nullable', 'max:150'],
 | |
|                 'city' => ['nullable', 'max:50'],
 | |
|                 'region' => ['nullable', 'max:50'],
 | |
|                 'country' => ['nullable', 'max:2'],
 | |
|                 'postal_code' => ['nullable', 'max:25'],
 | |
|             ])
 | |
|         )->only('id');
 | |
|     }
 | |
| 
 | |
|     public function edit(Organization $organization)
 | |
|     {
 | |
|         return Inertia::render('Organizations/Edit', [
 | |
|             'organization' => [
 | |
|                 'id' => $organization->id,
 | |
|                 'name' => $organization->name,
 | |
|                 'email' => $organization->email,
 | |
|                 'phone' => $organization->phone,
 | |
|                 'address' => $organization->address,
 | |
|                 'city' => $organization->city,
 | |
|                 'region' => $organization->region,
 | |
|                 'country' => $organization->country,
 | |
|                 'postal_code' => $organization->postal_code,
 | |
|                 'deleted_at' => $organization->deleted_at,
 | |
|                 'contacts' => $organization->contacts()->orderByName()->get()->map->only('id', 'name', 'city', 'phone'),
 | |
|             ],
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function update(Organization $organization)
 | |
|     {
 | |
|         $organization->update(
 | |
|             Request::validate([
 | |
|                 'name' => ['required', 'max:100'],
 | |
|                 'email' => ['nullable', 'max:50', 'email'],
 | |
|                 'phone' => ['nullable', 'max:50'],
 | |
|                 'address' => ['nullable', 'max:150'],
 | |
|                 'city' => ['nullable', 'max:50'],
 | |
|                 'region' => ['nullable', 'max:50'],
 | |
|                 'country' => ['nullable', 'max:2'],
 | |
|                 'postal_code' => ['nullable', 'max:25'],
 | |
|             ])
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     public function destroy(Organization $organization)
 | |
|     {
 | |
|         $organization->delete();
 | |
|     }
 | |
| 
 | |
|     public function restore(Organization $organization)
 | |
|     {
 | |
|         $organization->restore();
 | |
|     }
 | |
| }
 | 
