MIF_E31222707/Modules/Branch/Http/Controllers/BranchController.php

92 lines
2.2 KiB
PHP

<?php
namespace Modules\Branch\Http\Controllers;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Modules\Branch\Entities\Branch;
class BranchController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
$branches = Branch::latest()->paginate(10);
return view('branch::index', compact('branches'));
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
return view('branch::create');
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
$request->validate([
'name' => 'required|string|max:255',
'address' => 'required|string',
'phone' => 'required|string|max:20',
'email' => 'required|email|max:255',
'status' => 'required|boolean'
]);
Branch::create($request->all());
return redirect()->route('branch.index')
->with('success', 'Branch created successfully.');
}
/**
* Display the specified resource.
*/
public function show(Branch $branch)
{
return view('branch::show', compact('branch'));
}
/**
* Show the form for editing the specified resource.
*/
public function edit(Branch $branch)
{
return view('branch::edit', compact('branch'));
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, Branch $branch)
{
$request->validate([
'name' => 'required|string|max:255',
'address' => 'required|string',
'phone' => 'required|string|max:20',
'email' => 'required|email|max:255',
'status' => 'required|boolean'
]);
$branch->update($request->all());
return redirect()->route('branch.index')
->with('success', 'Branch updated successfully.');
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Branch $branch)
{
$branch->delete();
return redirect()->route('branch.index')
->with('success', 'Branch deleted successfully.');
}
}